1 2 3 4 5 6 7 8 9 10
import React from "react"; import styles from "./Card.css"; export default function Card({children, className, ...others}) { return ( <div className={styles.card + (className ? " " + className : "")} {...others}> {children} </div> ); }