Files
Homarr/src/widgets/loading.tsx
2023-04-05 21:49:42 +02:00

8 lines
159 B
TypeScript

import { Center, Loader } from '@mantine/core';
export const WidgetLoading = () => (
<Center h="100%">
<Loader variant="bars" />
</Center>
);