import { QuartzComponentProps } from "./types" import style from "./styles/toc.scss" export default function TableOfContents({ fileData, position }: QuartzComponentProps) { if (!fileData.toc) { return null } if (position === 'body') { // TODO: animate this return

Table of Contents

} else if (position === 'sidebar') { // TODO } } TableOfContents.css = style