Files
Project-Management-V2/frontend/app/main/loading.tsx
Your NamebaishaliHolocron b9ac5ae0b2 first commit
2026-06-15 12:57:03 +05:30

12 lines
380 B
TypeScript

import { LoadingSpinner } from "ikoncomponents";
// App Router renders this as the Suspense fallback inside <main> while navigating
// between menu items, so the sidebar stays put and only the content shows a spinner.
export default function Loading() {
return (
<div className="flex h-[60vh] w-full items-center justify-center">
<LoadingSpinner />
</div>
);
}