www/components/layout.tsx
2022-04-27 05:10:49 -04:00

25 lines
632 B
TypeScript

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 (
<>
<Meta name={props.name} ancestors={props.ancestors} />
<Title title={props.title} name={props.name} ancestors={props.ancestors} />
<FuzzyBar />
<div className='container'>
{props.children}
</div>
</>
);
}
export default Layout;