cubetiq-fusion/frontend/index.html

25 lines
503 B
HTML
Raw Permalink Normal View History

2021-07-25 17:44:30 +07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2021-07-27 10:05:54 +07:00
<title>CUBETIQ Fusion</title>
2021-07-25 17:44:30 +07:00
<style>
body {
margin: 0;
width: 100vw;
height: 100vh;
}
#outlet {
height: 100%;
}
</style>
<!-- index.ts is included here automatically (either by the dev server or during the build) -->
</head>
<body>
<div id="outlet"></div>
</body>
</html>