Skip to content

Commit e5ec84c

Browse files
committed
Merge pull request reactjs#123 from boriskaiser/patch-1
Fix localhost links
2 parents 4bd1969 + 046d1fe commit e5ec84c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lessons/02-rendering-a-route/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ render((
2525
```
2626

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

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

82-
Now visit http://localhost:8080/#/about and
83-
http://localhost:8080/#/repos
82+
Now visit [http://localhost:8080/#/about](http://localhost:8080/#/about) and
83+
[http://localhost:8080/#/repos](http://localhost:8080/#/repos)
8484

8585
---
8686

0 commit comments

Comments
 (0)