12 lines
257 B
HTML
12 lines
257 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module">
|
|
import {bootstrap} from "./app/app.js"
|
|
bootstrap(document.getElementById('root'), "<none>");
|
|
</script>
|
|
</body>
|
|
</html>
|