Skip to content

Commit b4bb9db

Browse files
committed
Merge pull request #1307 from abhilashsajeev/patch-1
Remove Unwanted Brackets in line 17 and 18
2 parents b62b527 + e673e8c commit b4bb9db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/02 Components/Route Component.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The matched child route elements to be rendered.
1414
React.render((
1515
<Router history={HashHistory}>
1616
<Route path="/" component={App}>
17-
<Route path="groups" components={Groups}}/>
18-
<Route path="users" components={Users}}/>
17+
<Route path="groups" components={Groups}/>
18+
<Route path="users" components={Users}/>
1919
</Route>
2020
</Router>
2121
), element);

0 commit comments

Comments
 (0)