import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App.tsx"; import { I18nProvider } from "./contexts/I18nContext"; import "./index.css"; const windowType = new URLSearchParams(window.location.search).get("windowType") || ""; if ( windowType === "hud-overlay" || windowType === "source-selector" || windowType === "countdown-overlay" ) { document.body.style.background = "transparent"; document.documentElement.style.background = "transparent"; document.getElementById("root")?.style.setProperty("background", "transparent"); } ReactDOM.createRoot(document.getElementById("root")!).render( , );