refresh progress

This commit is contained in:
2025-08-31 10:23:18 -05:00
parent b7d14be590
commit 07388e30da
7 changed files with 146 additions and 51 deletions

View 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;