aboutsummaryrefslogtreecommitdiff
path: root/web/src/app/components/Card.jsx
blob: e6d55fdd76dece203654fc6b690837d8e612e556 (plain) (blame)
1
2
3
4
5
6
7
export default function Card({children}) {
    return (
        <div className="p-4 bg-gray-900 rounded-md">
            {children}
        </div>
    )
}