mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
14 lines
304 B
TypeScript
14 lines
304 B
TypeScript
|
import React from "react";
|
||
|
import ReactDOM from "react-dom";
|
||
|
|
||
|
import { TTheme as Theme } from "./ui/React/Theme";
|
||
|
import { LoadingScreen } from "./ui/LoadingScreen";
|
||
|
import "./engineStyle";
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<Theme>
|
||
|
<LoadingScreen />
|
||
|
</Theme>,
|
||
|
document.getElementById("mainmenu-container"),
|
||
|
);
|