import { JSX } from 'solid-js' import { PageLayout } from '../_shared/PageLayout' import { TableOfContents } from '../TableOfContents' export const StaticPage = (props: { title: string children: JSX.Element layoutChildren: JSX.Element }) => { let articleBodyElement: HTMLElement | undefined return ( {props.layoutChildren}
{props.children}
) }