Spaces:
Runtime error
Runtime error
File size: 527 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | "use client";
import { Skeleton } from "@/shared/components/Loading";
export default function SettingsLoading() {
return (
<div className="space-y-6" role="status" aria-live="polite" aria-busy="true">
<Skeleton className="h-8 w-36" />
<div className="space-y-4">
{[0, 1, 2, 3].map((index) => (
<div key={index} className="space-y-2">
<Skeleton className="h-4 w-24" />
<Skeleton className="h-10 w-full" />
</div>
))}
</div>
</div>
);
}
|