mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
import {LoadingSpinner} from "@/components/wrappers/common/loading/LoadingSpinner";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="w-full h-full flex flex-col items-center justify-center">
|
|
<LoadingSpinner size={50} />
|
|
</div>
|
|
)
|
|
} |