import FuzzyBar from './fuzzy-bar'; import Meta from './meta'; import Title from './title'; type layoutProps = { name: string, title?: string, children?: JSX.Element | JSX.Element[], ancestors?: Array<{ name: string, path: string }> }; function Layout(props: layoutProps) { return ( <> <FuzzyBar /> <div className='container'> {props.children} </div> </> ); } export default Layout;