Files
Paradise/src/components/Loader.jsx
T
2025-04-03 17:05:59 +01:00

23 lines
347 B
React

import Indicator from "./LoadingIndicator";
const Loader = ({ style }) => {
return (
<div
style={{
display: "flex",
width: "100vw",
height: "100vh",
justifyContent: "center",
alignItems: "center",
...style
}}
>
<Indicator />
</div>
);
};
export default Loader;