Files
ipd-shomalhospital-admin-panel/src/app/(dashboard)/transfer-team/loading.tsx
2026-03-26 08:11:29 +03:30

7 lines
240 B
TypeScript

export default function Loading() {
return (
<div className="flex items-center justify-center h-screen">
<div className="animate-spin w-8 h-8 border-4 border-neutral-800 border-t-transparent rounded-full"></div>
</div>
)
}