mirror of
https://gitea.tendokyu.moe/sk1982/actaeon.git
synced 2026-05-04 20:05:32 -05:00
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
import { Skeleton, Spinner } from '@nextui-org/react';
|
|
|
|
export default function Loading() {
|
|
return (<div className="w-full h-full flex flex-grow items-center justify-center">
|
|
<Spinner size="lg" />
|
|
</div>);
|
|
}
|