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