From 2bc704a818f31d75fef0be0f183f2a7c1b978b1f Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Tue, 11 Mar 2025 22:40:21 +0800 Subject: [PATCH] feat(loading): add Loading component --- src/components/loading.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/components/loading.tsx diff --git a/src/components/loading.tsx b/src/components/loading.tsx new file mode 100644 index 0000000..42c957b --- /dev/null +++ b/src/components/loading.tsx @@ -0,0 +1,9 @@ +import { Skeleton } from "@/components/ui/skeleton"; + +export function Loading() { + return ( +
+ +
+ ); +}