mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 21:11:31 +01:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
|
import { MainLayout } from "@repo/ui/MainLayout"
|
||
|
import { Spinner } from "@repo/ui/design/Spinner"
|
||
|
|
||
|
const Loading: React.FC = () => {
|
||
|
return (
|
||
|
<MainLayout center>
|
||
|
<Spinner size={50} />
|
||
|
</MainLayout>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Loading
|