Skip to content

Instantly share code, notes, and snippets.

// 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);