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

Table of Contents

} TableOfContents.css = style export default (() => TableOfContents) satisfies QuartzComponentConstructor