Files
flxn-app/src/components/full-screen-loader.tsx
2025-08-31 10:23:18 -05:00

14 lines
306 B
TypeScript

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;