Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 0e11bc0

Browse files
author
Manuel Proß
committed
feat(FE): add card component
1 parent f232ee5 commit 0e11bc0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

web/src/components/Card/Card.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react';
2+
3+
type CardProps = {
4+
children: React.ReactNode;
5+
};
6+
7+
export default function Card({ children }: CardProps) {
8+
return <div>{children}</div>;
9+
}

0 commit comments

Comments
 (0)