import { type PropsWithChildren, useId } from 'react' export default function Section({ title, children, }: PropsWithChildren<{ title: string }>) { let id = useId() return (

{title}

{children}
) }