From fd058a53d1c689307369881476068ea4e7a58f07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Fri, 27 Feb 2026 20:35:37 +0800 Subject: [PATCH] fix: add missing SectionSkeleton component --- src/components/ui/loading-skeleton.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/ui/loading-skeleton.tsx b/src/components/ui/loading-skeleton.tsx index 47eda81..3d979b0 100644 --- a/src/components/ui/loading-skeleton.tsx +++ b/src/components/ui/loading-skeleton.tsx @@ -78,3 +78,19 @@ export function NewsCardSkeleton() { ); } + +export function SectionSkeleton() { + return ( +
+
+
+
+ {Array.from({ length: 4 }).map((_, index) => ( + + ))} +
+
+
+
+ ); +}