CoreControl/components/Loading.tsx
2025-05-17 15:45:02 +02:00

8 lines
211 B
TypeScript

export default function Loading() {
return (
<div className="flex items-center justify-center h-screen">
<span className="loading loading-ring loading-xl"></span>
</div>
);
}