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