Files
controller-v2/client/src/main.legacy.tsx
T

7 lines
194 B
TypeScript
Raw Normal View History

2026-06-03 15:42:58 +08:00
import "@/lib/legacyBrowser";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.legacy.css";
createRoot(document.getElementById("root")!).render(<App />);