refresh progress
This commit is contained in:
13
src/components/full-screen-loader.tsx
Normal file
13
src/components/full-screen-loader.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Center, Container, Loader, Stack } from "@mantine/core";
|
||||
|
||||
const FullScreenLoader = () => (
|
||||
<Container h="100dvh" w="100dvw">
|
||||
<Center h="100%">
|
||||
<Stack align="center" gap="md">
|
||||
<Loader size="xl" />
|
||||
</Stack>
|
||||
</Center>
|
||||
</Container>
|
||||
);
|
||||
|
||||
export default FullScreenLoader;
|
||||
Reference in New Issue
Block a user