mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex flex-col gap-4 w-full">
|
|
<Skeleton className="h-10 w-56" />
|
|
<Skeleton className="w-full h-[350px]" />
|
|
</div>
|
|
)
|
|
}
|