import { FC, ReactNode } from 'react'; import style from './ContentLayout.module.css'; type ContentLayoutProps = { children: ReactNode; }; const ContentLayout: FC = ({ children }) => (
{children}
); export default ContentLayout;