aboutsummaryrefslogtreecommitdiff
path: root/src/web/components/card/Card.jsx
blob: 36c4f1d6dd195d97f123b3a84e10a4af06bad1b5 (plain)
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>
    );
}