feat(loading): add Loading component

This commit is contained in:
cfngc4594 2025-03-11 22:40:21 +08:00
parent a5b5584e1c
commit 2bc704a818

View File

@ -0,0 +1,9 @@
import { Skeleton } from "@/components/ui/skeleton";
export function Loading() {
return (
<div className="h-full w-full p-2">
<Skeleton className="h-full w-full rounded-3xl" />
</div>
);
}