Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 4e5eb34

Browse files
committedMar 8, 2016
Change tutorial structure to individual folders for each lesson
1 parent 06fb883 commit 4e5eb34

File tree

146 files changed

+1525
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+1525
-45
lines changed
 

‎README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ React Router Tutorial
33

44
Quick lessons for getting up-to-speed with React Router.
55

6-
See [01-setting-up.md](/lessons/01-setting-up.md) to get started.
6+
See [Lesson 1 - Setting Up](/lessons/01-setting-up/) to get started.
77

8-
Each lesson has a commit for the final code so you can `git checkout
9-
<previous lesson final sha>` before starting a new one if you'd like.
8+
Each lesson is a fully runnable app with all code from the previous lesson, so you can `cd lessons/<lesson-folder>`, npm install,
9+
and then run the appropriate NPM scripts for each lesson from within the lesson folder.
1010

1111
Missing stuff that will come eventually, hopefully ... maybe.
1212

@@ -15,4 +15,3 @@ Missing stuff that will come eventually, hopefully ... maybe.
1515
- code splitting
1616
- location state
1717
- data integration
18-

‎lessons/01-setting-up.md ‎lessons/01-setting-up/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ up our project.
1111
```
1212
git clone <tutorial url>
1313
cd react-router-tutorial
14-
git checkout start
14+
cd lessons/01-setting-up
1515
npm install
1616
npm start
1717
```
1818

19-
Now open up [http://localhost:8080](http://localhost:8080)
19+
Now open up http://localhost:8080
2020

2121
Feel free to poke around the code to see how we're using webpack and npm
2222
scripts to run the app.
@@ -30,5 +30,4 @@ Open up `modules/App.js` and change the text to something like "Hello
3030

3131
---
3232

33-
[Next: Rendering a Router](02-rendering-a-router.md)
34-
33+
[Next: Rendering a Router](../02-rendering-a-route/)

0 commit comments

Comments
 (0)