-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 845 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 845 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Culture View</title>
<link rel="stylesheet" href="http://bootswatch.com/superhero/bootstrap.min.css"/>
<script src="./bower_components/react/react.js"></script>
<script src="./bower_components/react/JSXTransformer.js"></script>
<script src="./bower_components/d3/d3.js"></script>
<script src="./bower_components/superagent/superagent.js"></script>
<script src="./bower_components/async/lib/async.js"></script>
<style>
.center {
display: block;
margin: auto;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="text/jsx" src="./src/SearchBox.js"></script>
<script type="text/jsx" src="./src/Graph.js"></script>
<script type="text/jsx" src="./src/Application.js"></script>
</body>
</html>