import { Card, CardBody } from "@nextui-org/react"; import { useAppContext } from "../../contexts/AppContext"; import { EventInfoOverlay } from "../EventInfoOverlay"; import { HeaderLeft } from "./HeaderLeft"; import { HeaderRight } from "./HeaderRight"; export const Header = () => { const { connected } = useAppContext(); return (
{import.meta.env.VITE_INCLUDE_EVENT_INFO && }
{!connected && (
Disconnected
)}
); };