xxxxxxxxxx
type layoutProps = {
title: string,
children: JSX.Element[] | JSX.Element
}
const Layout:React.FC<LayoutProps> = ({children, title})=>{
return(
<>
<title>{title}</title>
<div>{children}</div>
</>
);
};