import { Skeleton } from '@/components/ui/skeleton'; interface Props { count?: number; } /** 帖子列表加载骨架屏(对齐卡片式列表) */ export default function PostListSkeleton({ count = 8 }: Props) { return (
{Array.from({ length: count }, (_, i) => (
{i % 4 === 0 && }
))}
); }