Files
Frontend/src/app/components/card.tsx

8 lines
186 B
TypeScript
Raw Normal View History

2024-04-15 09:09:45 +01:00
export function Card({
children,
}: Readonly<{
children: React.ReactNode;
2024-04-16 21:18:08 +01:00
}>): JSX.Element {
2024-04-16 21:57:09 +01:00
return <div className="bg-secondary rounded-lg p-3 w-max xs:w-fit">{children}</div>;
2024-04-15 09:09:45 +01:00
}