-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.17 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
<!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"></div>
<script src="src/config/youtube.js"></script>
<script src="compiled/src/lib/searchYouTube.js"></script>
<script src='compiled/src/data/exampleVideoData.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/Nav.js"></script>
<script src="compiled/src/components/Search.js"></script>
<script src="compiled/src/components/App.js"></script>
<script src="compiled/src/index.js"></script>
</body>
</html>