tmagic-editor/runtime/react/playground.html

27 lines
738 B
HTML

<!DOCTYPE html>
<html lang="en" style="font-size: 100px">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>React Playground</title>
<style>
html{-ms-overflow-style: none; overflow: -moz-scrollbars-none;}
html,body {height: 100%; margin: 0; padding: 0}
body {
height: fit-content;
min-height: 100%;
}
html::-webkit-scrollbar, .body::-webkit-scrollbar { width: 0 !important }
.magic-ui-page {
overflow: hidden;
}
</style>
</head>
<body style="font-size: 14px">
<div id="root"></div>
<script type="module" src="/src/playground/main.tsx"></script>
</body>
</html>