import React, { JSX } from "react"; type SectionProps = { children: JSX.Element; title: string; id: string }; export default function Section({ children, title, id }: SectionProps) { return (

{title}

{children}
); };