interface PageLayoutProps { icon: React.ReactElement; title: string; children: React.ReactElement } export const PageLayout: React.FC = ({ icon, title, children }) => { return (
{/* icon + title */}
{icon}

{title}

{/* data */}
{children}
); };