import { Skeleton } from '@sim/emcn' const AUTHOR_POST_SKELETON_COUNT = 4 /** Shared loading skeleton for a content section's author-profile route. */ export function ContentAuthorLoading() { return (
{Array.from({ length: AUTHOR_POST_SKELETON_COUNT }).map((_, i) => (
))}
) }