mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
22 lines
571 B
HTML
22 lines
571 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<title>ShadowEditor.UI</title>
|
|
<link rel="stylesheet" href="../ShadowEditor.Web/assets/css/icon/iconfont.css">
|
|
<link rel="stylesheet" href="css/ShadowEditor.UI.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container"></div>
|
|
<script src="js/react.js"></script>
|
|
<script src="js/react-dom.js"></script>
|
|
<script src="build/ShadowEditor.UI.js"></script>
|
|
<script>
|
|
var exanple = new Shadow.Example();
|
|
exanple.render(document.querySelector('#container'));
|
|
</script>
|
|
</body>
|
|
|
|
</html> |