peer-at-code-web/ui/Card.tsx
Nicolas VINCENT 1d4a6f64f1 dashboard-home-page
Création de la page accueille du dashboard
2023-02-10 10:09:39 +01:00

12 lines
No EOL
419 B
TypeScript

export default function Card() {
return (
<div className="w-96 h-20 bg-dark rounded-lg shadow-md mb-9">
<div className="flex w-full h-full py-2 px-4 rounded-lg justify-between">
<div className="my-auto">
<p className="font-bold">Bold data</p>
<p className="text-lg">Simple data</p>
</div>
</div>
</div>
);
}