mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex flex-wrap flex-row items-start justify-center gap-4 max-w-6xl">
|
|
<Skeleton className="w-full h-[800px]" />
|
|
<Skeleton className="w-1/3 max-w-[380px]" />
|
|
</div>
|
|
)
|
|
}
|