mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
26 lines
629 B
HTML
26 lines
629 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/index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
|
|
</div>
|
|
<script src="js/react.js"></script>
|
|
<script src="js/react-dom.js"></script>
|
|
<script src="build/ShadowEditor.js"></script>
|
|
<script>
|
|
var panel = React.createElement(Shadow.Panel, {
|
|
title: 'Panel'
|
|
}, 'OK');
|
|
ReactDOM.render(panel, document.querySelector('#container'));
|
|
</script>
|
|
</body>
|
|
|
|
</html> |