This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Grundstruktur für die Web-App "Das Duell um die Geld" | |
// React + TailwindCSS + Zustand (für State Management) | |
// Hinweis: Dies ist ein MVP-Startpunkt für deine Spielidee | |
import React, { useState } from "react"; | |
import { v4 as uuidv4 } from "uuid"; | |
export default function GameLobby() { | |
const [roomCode, setRoomCode] = useState(""); | |
const [isHost, setIsHost] = useState(false); |