From 600364c380822e7b168493867ef48cf920c3eff9 Mon Sep 17 00:00:00 2001 From: Ben Sykes Date: Sun, 27 Nov 2016 08:42:02 -0800 Subject: [PATCH] Add a note that paths should be absolute Fixes #264 --- lessons/03-navigating-with-link/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/03-navigating-with-link/README.md b/lessons/03-navigating-with-link/README.md index fd1518d8..46e9f0d5 100644 --- a/lessons/03-navigating-with-link/README.md +++ b/lessons/03-navigating-with-link/README.md @@ -2,7 +2,7 @@ Perhaps the most used component in your app is `Link`. It's almost identical to the `` tag you're used to except that it's aware of -the `Router` it was rendered in. +the `Router` it was rendered in. **Note**: paths must be absolute to navigate to components. Let's create some navigation in our `App` component.