19 lines
345 B
JavaScript
19 lines
345 B
JavaScript
import { Box, Spinner } from "@chakra-ui/react";
|
|
import React from "react";
|
|
|
|
const FullscreenLoaders = () => {
|
|
return (
|
|
<Box
|
|
display={"flex"}
|
|
justifyContent={"center"}
|
|
alignItems={"center"}
|
|
w={"100%"}
|
|
h={"70vh"}
|
|
>
|
|
<Spinner color='green.700' />
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default FullscreenLoaders;
|