import { useActiveAnchor, useDynamicToc } from '@rspress/core/theme'; import { TocItem } from './TocItem'; const baseHeaderLevel = 2; export function Toc() { const headers = useDynamicToc(); const { activeAnchorId } = useActiveAnchor(headers); return ( <> {headers.map((header, index) => ( ))} ); }