-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.19 KB
/
index.html
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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recast.ly - Recast Yourself</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/style.css">
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/react/dist/react.js"></script>
<script src="node_modules/react-dom/dist/react-dom.js"></script>
<script src="node_modules/lodash/lodash.js"></script>
</head>
<body>
<div id="app">
<h5>
<br/><br/>
this message will disappear when <em>app</em> view is correctly rendered
<br/><br/><br/>
</h5>
</div>
<script src="src/config/youtube.js"></script>
<script src="compiled/src/components/VideoListEntry.js"></script>
<script src="compiled/src/components/VideoList.js"></script>
<script src="compiled/src/components/VideoPlayer.js"></script>
<script src="compiled/src/components/Search.js"></script>
<script src="compiled/src/lib/searchYouTube.js"></script>
<script src="compiled/src/components/App.js"></script>
<script src="compiled/src/index.js"></script>
</body>
</html>