We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d013c commit b1a8b14Copy full SHA for b1a8b14
lessons/01-setting-up/index.html
@@ -1,6 +1,7 @@
1
<!doctype html public "storage">
2
<html>
3
<meta charset=utf-8/>
4
-<title>My First React Router App</title>
+<title>My first React App</title>
5
+<link rel=stylesheet href=index.css>
6
<div id=app></div>
7
<script src="bundle.js"></script>
lessons/01-setting-up/modules/App.js
@@ -2,6 +2,12 @@ import React from 'react'
export default React.createClass({
render() {
- return <div>Hello, React Router!</div>
+ return <section>
+ <div>Book 1</div>
+ <div>Book 2</div>
8
+ <div>Book 3</div>
9
+ <div>Book 4</div>
10
+
11
+ </section>
12
}
13
})
0 commit comments