From 046d1fe65127f3ef7c77307a65d235b5106c31d8 Mon Sep 17 00:00:00 2001 From: Boris Kaiser Date: Fri, 18 Mar 2016 12:28:23 +0100 Subject: [PATCH] Fix localhost links --- lessons/02-rendering-a-route/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lessons/02-rendering-a-route/README.md b/lessons/02-rendering-a-route/README.md index 8523654d..b01adadd 100644 --- a/lessons/02-rendering-a-route/README.md +++ b/lessons/02-rendering-a-route/README.md @@ -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 @@ -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) ---