mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 15:31:21 +00:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import { Loading as Spinner } from "@/components/loading";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex items-center justify-center w-full h-screen">
|
|
<Spinner className="text-white" />
|
|
</div>
|
|
);
|
|
}
|