import React, {ReactNode, useId} from 'react' type CardGroupProps = { title: string children: ReactNode } export function CardGroup({title, children}: CardGroupProps) { const id = useId() return (

{title}

) }