const Card = (props) => { const { children, headerSlot } = props return
<>{headerSlot}
{children}
} export default Card