--- import type { MarkdownHeading } from "astro"; import "../styles/toc.scss"; interface Props { toc: boolean; headings: MarkdownHeading[]; } const { toc, headings } = Astro.props; const minDepth = Math.min(...headings.map((heading) => heading.depth)); --- { toc ? ( <>
Table of contents
) : ( ) }