mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-11-27 08:39:59 +08:00
26 lines
628 B
HTML
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>
|