import React from 'react'; interface LayoutProps { children: React.ReactNode; title: string; } export const Layout: React.FC = ({ children, title }) => { return (
{title.charAt(0)}

{title === 'NOTSET' ? 'App Template' : title}

{children}
); };