mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-11-21 03:15:49 +08:00
09211db07b
also upgrade typescript and typebox to latest version
17 lines
454 B
HTML
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>
|