20 lines
435 B
HTML
20 lines
435 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Page</title>
|
||
|
<style>
|
||
|
@import "../../webapp/src/styles/main.scss";
|
||
|
</style>
|
||
|
<script type="module" src="boot.ts"></script>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="root"></div>
|
||
|
<script type="module">
|
||
|
import "./boot";
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|