import styles from './WindowLayout.module.css'; const WindowLayout = ({ title, titleComponent, content }) => { return (

{title}

{titleComponent}
{content}
); }; export default WindowLayout;