CoreControl/components/Loading.tsx

8 lines
211 B
TypeScript
Raw Normal View History

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