sunmao-ui/packages/editor/index.html
2022-02-10 15:34:09 +08:00

26 lines
628 B
HTML

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