Tip => Note

"Tip" usually contains an action for you to perform.
"Note" is more appropriate here since it's just an FYI.
This commit is contained in:
Misha Moroshko
2018-10-26 16:18:29 -07:00
committed by GitHub
parent a8bf119e01
commit 451a96c311

View File

@@ -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 (