26 lines
628 B
HTML
Raw Permalink Normal View History

2021-09-23 11:17:36 +08:00
<!DOCTYPE html>
2021-10-21 16:09:05 +08:00
<html lang="en" style="overflow: hidden">
2021-09-23 11:17:36 +08:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>runtime example: basic grid layout</title>
2021-11-06 15:28:28 +08:00
<style>
#root {
width: 100vw;
height: 100vh;
}
/* FIXME: this is only a temporary workaround, use some proper css to fix the scrollbar */
.App {
padding: 6px;
}
2021-11-06 15:28:28 +08:00
</style>
2021-09-23 11:17:36 +08:00
</head>
<body>
<div id="root"></div>
<script type="module">
import renderApp from './src/main.tsx';
renderApp();
</script>
</body>
</html>