---
import type { MarkdownHeading } from 'astro';
import MoreMenu from '../RightSidebar/MoreMenu.astro';
import TableOfContents from '../RightSidebar/TableOfContents';
type Props = {
title: string;
headings: MarkdownHeading[];
githubEditUrl: string;
};
const { title, headings, githubEditUrl } = Astro.props;
---