Browse Source

Add boolean variable definition

Artyom Trityak 9 năm trước cách đây
mục cha
commit
e95693e56b
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      lessons/09-index-links/README.md

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

@@ -38,7 +38,7 @@ We can use `Link` as well by passing it the `onlyActiveOnIndex` prop
 (`IndexLink` just wraps `Link` with this property for convenience).
 (`IndexLink` just wraps `Link` with this property for convenience).
 
 
 ```js
 ```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
 That's fine, but we already abstracted away having to know what the
@@ -49,7 +49,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`:
 a `NavLink` and it will make its way down to the `Link`:
 
 
 ```js
 ```js
-<li><NavLink to="/" onlyActiveOnIndex>Home</NavLink></li>
+<li><NavLink to="/" onlyActiveOnIndex={true}>Home</NavLink></li>
 ```
 ```
 
 
 ---
 ---