+
+ {player.playerType} {player.cards}/3
+
+
+

+
+
+ );
+};
+
+export default PlayerTag;
diff --git a/apps/web/src/components/PlayerTag/PlayerTagContainer.tsx b/apps/web/src/components/PlayerTag/PlayerTagContainer.tsx
new file mode 100644
index 0000000..967b39f
--- /dev/null
+++ b/apps/web/src/components/PlayerTag/PlayerTagContainer.tsx
@@ -0,0 +1,21 @@
+import PlayerTag from './PlayerTag';
+import type { GameData } from '../../utils/GameData';
+import c from './style.module.css';
+
+type PlayerTagContainerProps = {
+ gameState: GameData | null | undefined;
+};
+
+const PlayerTagContainer: React.FC