export const Section = ({ children, title }) => (

{title}

{children}
); export const Subsection = ({ children, title }) => (

{title}

{children}
);