Skip to content

Instantly share code, notes, and snippets.

@manojsinghnegiwd
Created April 20, 2021 11:46
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/a65b9e34f8e1a134ee740c9c7034c002 to your computer and use it in GitHub Desktop.
Save manojsinghnegiwd/a65b9e34f8e1a134ee740c9c7034c002 to your computer and use it in GitHub Desktop.
function useReducer(reducer, initState) {
const [state, setState] = useState(initState);
return [state, function () {}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment