14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
|
|
import { HeaderSkeleton, Skeleton, ListSkeleton } from "@/components/ui/skeleton";
|
||
|
|
|
||
|
|
export default function ApiKeysLoading() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<HeaderSkeleton />
|
||
|
|
<div className="max-w-2xl space-y-6">
|
||
|
|
<Skeleton className="h-20 rounded-2xl" />
|
||
|
|
<ListSkeleton rows={3} />
|
||
|
|
</div>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|