Frontend/src/components/ui/card.tsx

8 lines
165 B
TypeScript
Raw Normal View History

2024-04-15 08:09:45 +00:00
export function Card({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
2024-04-15 11:12:24 +00:00
return <div className="bg-secondary rounded-lg p-4 w-full">{children}</div>;
2024-04-15 08:09:45 +00:00
}