"use client"; import React from "react"; import { Button } from "@/components/ui/button"; import { Icons } from "@/components/icons"; import { cn } from "@/lib/utils"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import LobbyForm from "./lobby-form"; function CreateLobbyDialog({ className }: { className?: string }) { const [open, setOpen] = React.useState(false); return ( Create Lobby setOpen(false)} /> ); } export default CreateLobbyDialog;