import { ReactNode } from 'react'; import classNames from 'classnames'; import getChildrenToArray from './getChildrenToArray'; import { NestingProvider } from '../contexts/NestingProvider'; import Layout from '../Layout.css'; import Whitespace from '../Whitespace.css'; type Props = { children: ReactNode; }; export default function TableOfContentsItemList({ children }: Props) { const childrenArray = getChildrenToArray({ children }); return ( ); }