type Heading = { id: string; text: string; level: number; }; export function MobileTableOfContents({ headings }: { headings: Heading[] }) { if (headings.length === 0) return null; return (
Contents +
); }