Browse Source

Tip => Note

"Tip" usually contains an action for you to perform.
"Note" is more appropriate here since it's just an FYI.
main
Misha Moroshko 7 years ago
committed by GitHub
parent
commit
451a96c311
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/docs/hooks-faq.md

2
content/docs/hooks-faq.md

@ -396,7 +396,7 @@ In large component trees, an alternative we recommend is to pass down a `dispatc
const TodosDispatch = React.createContext(null);
function TodosApp() {
// Tip: `dispatch` won't change between re-renders
// Note: `dispatch` won't change between re-renders
const [todos, dispatch] = useReducer(todosReducer);
return (

Loading…
Cancel
Save