Update | Project Ready

This commit is contained in:
Possible
2025-04-03 17:05:59 +01:00
commit c5aee9e2ec
176 changed files with 34486 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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;