sunmao-ui/packages/editor/playground.html
Yanzhen Yu 09211db07b refactor code namings to sunmao-ui
also upgrade typescript and typebox to latest version
2021-11-21 14:38:33 +08:00

17 lines
454 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>sunmao-ui playground</title>
</head>
<body>
<div id="root"></div>
<script type="module">
import renderPlayground from './src/playground.tsx';
import examples from '@example.json';
renderPlayground(examples);
</script>
</body>
</html>