import React from "react"; import styles from "./Card.css"; export default function Card({children, className, ...others}) { return (
{children}
); }