import { FC } from "react"; type Props = { title: string; }; const PageLayout: FC = ({ title, children }) => (

{title}

{children}
); export default PageLayout;