import dynamic from 'next/dynamic';
import { MyMatters } from 'types';
import { renderToString } from 'react-dom/server';
import { getHeadings } from 'lib/utils';
import PostTOC from 'components/post/PostTOC';
const Footer = dynamic(() => import('components/Footer'));
const HeadBar = dynamic(() => import('components/NavBar'));
const PostComment = dynamic(() => import('components/post/PostComment'));
interface Props extends MyMatters {
showTOC?: boolean;
children: React.ReactElement;
}
const MDXLayout = ({ title, date, showTOC = true, children }: Props) => {
const contentString = renderToString(children);
const headings = getHeadings(contentString);
return (
<>
{title}
{showTOC && }
{children}
>
);
};
export default MDXLayout;