Files
WhiteNightsAdminPanel/src/main.tsx
2025-06-06 16:08:15 +03:00

9 lines
216 B
TypeScript

import { createRoot } from "react-dom/client";
import "./index.css";
import { App } from "./app/index";
const container = document.getElementById("root");
const root = createRoot(container!);
root.render(<App />);