소스 검색

Merge pull request #118 from artyomtrityak/master

Add boolean variable definition
Tim Dorr 9 년 전
부모
커밋
76fd3c9ae5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      lessons/09-index-links/README.md

+ 2 - 2
lessons/09-index-links/README.md

@@ -42,7 +42,7 @@ We can use `Link` as well by passing it the `onlyActiveOnIndex` prop
 (`IndexLink` just wraps `Link` with this property for convenience).
 
 ```js
-<li><Link to="/" activeClassName="active" onlyActiveOnIndex>Home</Link></li>
+<li><Link to="/" activeClassName="active" onlyActiveOnIndex={true}>Home</Link></li>
 ```
 
 That's fine, but we already abstracted away having to know what the
@@ -53,7 +53,7 @@ the `{...spread}` syntax, so we can actually add the prop when we render
 a `NavLink` and it will make its way down to the `Link`:
 
 ```js
-<li><NavLink to="/" onlyActiveOnIndex>Home</NavLink></li>
+<li><NavLink to="/" onlyActiveOnIndex={true}>Home</NavLink></li>
 ```
 
 ---