mirror of https://github.com/bearfm/site.git
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
|
import { App } from "./App";
|
||
|
|
||
|
function __run() {
|
||
|
const app = new App(document.getRootNode());
|
||
|
app.run();
|
||
|
}
|
||
|
|
||
|
document.addEventListener("DOMContentLoaded", __run);
|