Frontend/src/app/components/ui/card.tsx
Liam 9e0a914ccb
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 57s
cleanup
2024-04-16 19:12:26 +01:00

8 lines
158 B
TypeScript

export function Card({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <div className="bg-secondary rounded-lg p-4">{children}</div>;
}