Skip to content

Instantly share code, notes, and snippets.

@manojsinghnegiwd
Created April 20, 2021 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manojsinghnegiwd/d92856a56f1377ca6086045cd8bc22f4 to your computer and use it in GitHub Desktop.
Save manojsinghnegiwd/d92856a56f1377ca6086045cd8bc22f4 to your computer and use it in GitHub Desktop.
function Counter() {
const [state, dispatch] = useReducer(reducer, initialState);
return (
<React.Fragment>
Count: {state.count}
<button onClick={() => dispatch({ type: "increment" })}>+</button>
<button onClick={() => dispatch({ type: "decrement" })}>-</button>
</React.Fragment>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment