Skip to content

Instantly share code, notes, and snippets.

@rishichawda
Created May 18, 2019 19:29
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 rishichawda/d3ba7b0e4ae70052bf7ce4693fe3822e to your computer and use it in GitHub Desktop.
Save rishichawda/d3ba7b0e4ae70052bf7ce4693fe3822e to your computer and use it in GitHub Desktop.
Initial redux.js file - Managing Application state without Redux
import React from "react";
export const useGlobalState = (initialState = {}, reducer) => {
let init;
let appState = {};
if (typeof initialState === "function") {
init = initialState;
} else {
appState = initialState;
}
const [state, dispatch] = React.useReducer(
reducer,
appState,
init
);
return {
...state, dispatch
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment