diff --git a/packages/react/src/DynamicLayout.tsx b/packages/react/src/DynamicLayout.tsx new file mode 100644 index 0000000..4a3b718 --- /dev/null +++ b/packages/react/src/DynamicLayout.tsx @@ -0,0 +1,56 @@ +import { ReactNode } from "react"; +import { type Toc } from "@stefanprobst/rehype-extract-toc"; +import { useLocation } from "react-router-dom"; + +function RecursivelyToc({ toc }: { toc: Toc }) { + const location = useLocation(); + + return ( +