import { QuartzComponentProps } from "./types" import style from "./styles/toc.scss" export default function TableOfContents({ fileData }: QuartzComponentProps) { if (!fileData.toc) { return null } return

Table of Contents

} TableOfContents.css = style