import { Skeleton } from '@sim/emcn' const FEATURED_SKELETON_COUNT = 3 const LIST_SKELETON_COUNT = 5 /** Shared loading skeleton for a content section's index/list route. */ export function ContentIndexLoading() { return (
{Array.from({ length: FEATURED_SKELETON_COUNT }).map((_, i) => (
))}
{Array.from({ length: LIST_SKELETON_COUNT }).map((_, i) => (
))}
) }