Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
587d9e1
create example-react-hooks-useReducer
Jun 30, 2019
6ffa9a3
Update example-react-hooks-useReducer.md
Jul 23, 2019
0efd497
Update example-react-hooks-useReducer.md
Jul 23, 2019
bc239ff
Update example-react-hooks-useReducer.md
Jul 23, 2019
7db2443
Update example-react-hooks-useReducer.md
Jul 23, 2019
0266c65
Update docs/example-react-hooks-useReducer.md
Jul 24, 2019
9150dad
Update docs/example-react-hooks-useReducer.md
Jul 24, 2019
909875d
Update example-react-hooks-useReducer.md
Jul 24, 2019
6fd0bd3
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
ebcab51
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
77674e8
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
61eff1a
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
0cbaf5e
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
353311e
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
8d3b36e
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
b2b4ba5
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
e8e0ec6
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
3c643c6
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
413f8a6
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
f1f8a78
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
a8c9fc0
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
d0dafc0
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
ca79e52
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
efa40b0
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
dd87760
Update docs/example-react-hooks-useReducer.md
Jul 27, 2019
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs/example-react-hooks-useReducer.md
Co-Authored-By: Alex Krolick <alexkrolick@users.noreply.github.com>
  • Loading branch information
iqbal125 and alexkrolick authored Jul 27, 2019
commit 3c643c6159898d10a1be79f74c604e144fe1d470
2 changes: 1 addition & 1 deletion docs/example-react-hooks-useReducer.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Example = () => {
? <p>Confirmed!</p>
: <p>Waiting for confirmation...</p>}
</div>
<button onClick={dispatchActionSuccess}>
<button onClick={dispatch({type: 'SUCCESS'})}>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<button onClick={dispatch({type: 'SUCCESS'})}>
<button onClick={dispatch({type: 'SUCCESS'})}>
Dispatch Success
</button>
</div>
Expand Down