export function Card({ children }: { children: React.ReactNode }) { return
{children}
; } export default Card;