Browse Source

Fix useReducer example (#1992)

main
Aaron Mast 6 years ago
committed by Alexey Pyltsyn
parent
commit
d2d2ee420d
  1. 2
      content/docs/hooks-reference.md

2
content/docs/hooks-reference.md

@ -226,7 +226,7 @@ function reducer(state, action) {
}
}
function Counter({initialState}) {
function Counter() {
const [state, dispatch] = useReducer(reducer, initialState);
return (
<>

Loading…
Cancel
Save