Browse Source

Update hooks-overview.md (#3110)

* Update hooks-overview.md

Changed 'is' -> 'are'

* Update content/docs/hooks-overview.md

Co-authored-by: Ricky <rickhanlonii@gmail.com>

Co-authored-by: Ricky <rickhanlonii@gmail.com>
main
epsi 4 years ago
committed by GitHub
parent
commit
63332462bb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/docs/hooks-overview.md

2
content/docs/hooks-overview.md

@ -229,7 +229,7 @@ function FriendListItem(props) {
}
```
The state of these components is completely independent. Hooks are a way to reuse *stateful logic*, not state itself. In fact, each *call* to a Hook has a completely isolated state -- so you can even use the same custom Hook twice in one component.
The state of each component is completely independent. Hooks are a way to reuse *stateful logic*, not state itself. In fact, each *call* to a Hook has a completely isolated state -- so you can even use the same custom Hook twice in one component.
Custom Hooks are more of a convention than a feature. If a function's name starts with "`use`" and it calls other Hooks, we say it is a custom Hook. The `useSomething` naming convention is how our linter plugin is able to find bugs in the code using Hooks.

Loading…
Cancel
Save