Skip to content

Instantly share code, notes, and snippets.

@btodts
Last active April 8, 2020 08:38
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 btodts/3a04c9f807233bfcc46f48e489619798 to your computer and use it in GitHub Desktop.
Save btodts/3a04c9f807233bfcc46f48e489619798 to your computer and use it in GitHub Desktop.
import { createStore } from "redux";
import rootReducer from "./reducers";
let initialState = {};
const store = createStore(rootReducer, initialState);
export default store;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment