import React from "react"; import { usePlayers } from "../hooks"; import { Loading } from "./Loading"; export function Lobby() { const players = usePlayers(); if (!players) { return ; } return (
Please wait for the game to be ready.