Files
commafeed/commafeed-client/src/components/Loader.tsx
2024-06-13 23:28:45 +02:00

10 lines
200 B
TypeScript

import { Center, Loader as MantineLoader } from "@mantine/core"
export function Loader() {
return (
<Center>
<MantineLoader size="lg" type="bars" />
</Center>
)
}