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