mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-19 14:02:20 +01:00
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { Center, Loader } from '@mantine/core';
|
|
|
|
export const WidgetLoading = () => (
|
|
<Center h="100%">
|
|
<Loader variant="bars" />
|
|
</Center>
|
|
);
|