18 lines
455 B
TypeScript
18 lines
455 B
TypeScript
import { Skeleton } from "@/shared/components/ui/skeleton"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex h-full flex-col space-y-8 p-8">
|
|
<div className="space-y-2">
|
|
<Skeleton className="h-7 w-40" />
|
|
<Skeleton className="h-4 w-72" />
|
|
</div>
|
|
<div className="space-y-4">
|
|
<Skeleton className="h-10 w-full" />
|
|
<Skeleton className="h-[240px] w-full" />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|