-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1002 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%NAME%></title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/>
<style>
*{
padding:0;
margin:0;
}
</style>
<!-- 发布git使用如下代码 -->
<!-- <link href="./dist/index.css" rel="stylesheet" />
<script src="//cdn.bootcss.com/react/15.5.0/react.min.js"></script>
<script src="//cdn.bootcss.com/react/15.5.0/react-dom.min.js"></script> -->
<!-- 开发使用如下代码 -->
<link href="/static/index.css" rel="stylesheet" />
<script src="/node_modules/react/dist/react.min.js"></script>
<script src="/node_modules/react-dom/dist/react-dom.min.js"></script>
</head>
<body>
<div id="container"></div>
<!-- 发布git使用如下代码 -->
<!-- <script src="./dist/index.js"></script> -->
<!-- 开发使用如下代码 -->
<script src="/static/index.js"></script>
</body>
</html>