cleanup
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s

This commit is contained in:
Lee
2024-04-15 09:09:45 +01:00
parent cb91880caf
commit 08739a2e3d
3 changed files with 21 additions and 6 deletions

View File

@ -0,0 +1,7 @@
export function Card({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <div className="bg-secondary rounded-lg p-4 min-w-[600px] max-w-full flex flex-row gap-2">{children}</div>;
}