Files
portabase/app/(customer)/dashboard/loading.tsx
T
2025-05-16 15:54:17 +02:00

10 lines
283 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>
);
}