interface PageLayoutProps { title: React.ReactNode; } function PageLayout({ title }: PageLayoutProps) { return ( <>
{title}
); } export default PageLayout;