forked from jackcallister/react-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
19 lines (19 loc) · 770 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>React Simple</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser-polyfill.js"></script>
<script type="text/javascript" src="https://fb.me/react-0.14.7.js"></script>
<script type="text/javascript" src="https://fb.me/react-dom-0.14.7.js"></script>
<script type="text/javascript">
window.App = {}
</script>
</head>
<body>
<div id="app"></div>
<script type="text/babel" src="./components/HelloWorld.js"></script>
<script type="text/babel" src="./index.js"></script>
</body>
</html>