fleet/frontend/index.jsx
2024-03-13 19:09:16 +00:00

17 lines
391 B
JavaScript

import { createRoot } from "react-dom/client";
// used for babel polyfills.
import "core-js/stable";
import "regenerator-runtime/runtime";
import "./public-path";
import routes from "./router";
import "./index.scss";
if (typeof window !== "undefined") {
const { document } = global;
const app = document.getElementById("app");
const root = createRoot(app);
root.render(routes);
}