mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
16 lines
391 B
JavaScript
16 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);
|
|
}
|