mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
30 lines
608 B
HTML
30 lines
608 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>React Button</title>
|
|
|
|
<script src="./node_modules/react/dist/react-with-addons.js"></script>
|
|
<style>
|
|
|
|
body
|
|
body * {
|
|
box-sizing: border-box;
|
|
}
|
|
html,
|
|
body,
|
|
#content {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
</div>
|
|
|
|
<script src="http://localhost:9090/webpack-dev-server.js"></script>
|
|
<script type="text/javascript" src="http://localhost:9090/assets/bundle.js"></script>
|
|
</body>
|
|
</html> |