/* eslint import/no-default-export: off */ import { Container } from "./Container"; // TODO types export const SimpleLayout: React.FC = ({ children, ...frontMatter }) => { const { title, description } = frontMatter; return (

{title}

{description}

{children}
); };