We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4516e3 commit 06eef10Copy full SHA for 06eef10
lessons/04-nested-routes/README.md
@@ -46,7 +46,7 @@ automatically becomes nested UI.
46
47
## Sharing Our Navigation
48
49
-Lets nest our `About` and `Repos` components inside of `App` so that we
+Let's nest our `About` and `Repos` components inside of `App` so that we
50
can share the navigation with all screens in the app. We do it in two
51
steps:
52
@@ -75,7 +75,7 @@ Next, render children inside of `App`.
75
render() {
76
return (
77
<div>
78
- <h1>Ghettohub Issues</h1>
+ <h1>React Router Tutorial</h1>
79
<ul role="nav">
80
<li><Link to="/about">About</Link></li>
81
<li><Link to="/repos">Repos</Link></li>
0 commit comments