orchetera
Version:
Welcome to **Orchetera** — your orchestration tool to kickstart Firebase-ready projects with ease!
23 lines (20 loc) • 431 B
JSX
import { Box } from "@mui/material";
const Loader = () => {
return (
<Box
sx={{
position: "fixed",
zIndex: 1000,
width: "100%",
height: "100vh",
backgroundColor: "rgba(0,0,0,0.5)",
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
<Box component="span" className="loader" />
</Box>
);
};
export default Loader;