mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { Center, Loader as MantineLoader } from "@mantine/core"
|
|
|
|
export function Loader() {
|
|
return (
|
|
<Center>
|
|
<MantineLoader size="xl" variant="bars" />
|
|
</Center>
|
|
)
|
|
}
|