2024-04-15 08:09:45 +00:00
|
|
|
export function Card({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
2024-04-16 20:18:08 +00:00
|
|
|
}>): JSX.Element {
|
2024-04-16 16:54:22 +00:00
|
|
|
return <div className="bg-secondary rounded-lg p-4">{children}</div>;
|
2024-04-15 08:09:45 +00:00
|
|
|
}
|