import { useId } from 'react' export function Section({ title, children }) { let id = useId() return (

{title}

{children}
) }