import { getTableOfContents } from 'fumadocs-core/server'; type TableOfContentsProperties = { data: string; }; export const TableOfContents = async ({ data, }: TableOfContentsProperties) => { const toc = await getTableOfContents(data); return (