import React from 'react'; interface Props { title: string; children: React.ReactNode; className?: string; id?: string; } const Section: React.FC = ({ title, children, className = "", id }) => { return (

{title}

{children}
); }; export default Section;