Files
openscreen/src/main.tsx
T
2026-04-19 12:37:17 +05:30

25 lines
725 B
TypeScript

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(
<React.StrictMode>
<I18nProvider>
<App />
</I18nProvider>
</React.StrictMode>,
);