Skip to content

Commit 71c4526

Browse files
committed
final changes
1 parent 6731f72 commit 71c4526

12 files changed

+1096
-797
lines changed

.gitignore

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
/node_modules
22
bundle.js
33
npm-debug.log
4-
.DS_Store
5-
6-
# IntelliJ
7-
*.iml
8-
/.idea

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
# curated-search
1+
## Video Browser In Reactjs
2+
* This is a small project developed with reactjs.
3+
* Try to use github with every step code change to git familiar with version control
4+
5+
## How to start the App
6+
`git clone [email protected]:JavaScriptDevelopment/curated-search.git`
7+
8+
`npm install`
9+
10+
`npm start`
11+

index.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta name="viewport" content="width=device-width, initial-scale=1">
5-
<link rel="stylesheet" href="/style/style.css">
4+
<link rel="stylesheet" href="style/style.css">
65
<link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/48938155eb24b4ccdde09426066869504c6dab3c/dist/css/bootstrap.min.css">
7-
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAq06l5RUVfib62IYRQacLc-KAy0XIWAVs"></script>
86
</head>
97
<body>
108
<div class="container"></div>
119
</body>
12-
<script src="/bundle.js"></script>
10+
<script src="bundle.js"></script>
1311
</html>

0 commit comments

Comments
 (0)