Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lessons/02-rendering-a-route/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ render((
```

Make sure your server is running with `npm start` and then visit
http://localhost:8080
[http://localhost:8080](http://localhost:8080)

You should get the same screen as before, but this time with some junk
in the URL. We're using `hashHistory`--it manages the routing history
Expand Down Expand Up @@ -79,8 +79,8 @@ render((
), document.getElementById('app'))
```

Now visit http://localhost:8080/#/about and
http://localhost:8080/#/repos
Now visit [http://localhost:8080/#/about](http://localhost:8080/#/about) and
[http://localhost:8080/#/repos](http://localhost:8080/#/repos)

---

Expand Down