Skip to content

Commit

Permalink
modify hooks overview
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqingc committed Mar 26, 2019
1 parent 07a12a4 commit 9dc6aa6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions content/docs/hooks-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ next: hooks-state.html
prev: hooks-intro.html
---

*Hook* 是 React 16.8 的新增特性。它可以让你在不使用 class 的情况下使用 state 和一些其他的 React 特性。
*Hook* 是 React 16.8 的新增特性。它可以让你在不编写 class 的情况下使用 state 以及其他的 React 特性。

Hook 是[向下兼容的](/docs/hooks-intro.html#no-breaking-changes)。本页面为有经验的 React 用户提供一个对 Hook 的概览。这是一个相当快速的概览,如果你有疑惑,可以参阅下面这样的黄色提示框。

Expand Down Expand Up @@ -201,10 +201,11 @@ function useFriendStatus(friendID) {
}
```

它将 `friendID` 作为参数,并返回该好友是否在线
它将 `friendID` 作为参数,并返回该好友是否在线

现在我们可以在两个组件中使用它:


```js{2}
function FriendStatus(props) {
const isOnline = useFriendStatus(props.friend.id);
Expand Down

0 comments on commit 9dc6aa6

Please sign in to comment.