import React from "react"; const Card = ({ children, styles = {} }) => { return (
{children}
); }; export default Card;