import React from "react"; export default function Card({ title, children, onClose }) { return (
{title &&

{title}

}
{children}
); }