Files
Homarr/src/widgets/loading.tsx
2023-07-21 18:08:40 +09:00

8 lines
151 B
TypeScript

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