Skip to content

Instantly share code, notes, and snippets.

@baso53
Created October 22, 2018 13:33
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 baso53/25d6790a685450bd30d55c1ca0bc5319 to your computer and use it in GitHub Desktop.
Save baso53/25d6790a685450bd30d55c1ca0bc5319 to your computer and use it in GitHub Desktop.
implementing-sagas-store-1.js
import { createStore, applyMiddleware } from "redux";
import reducer from "./reducer";
const store = createStore(reducer, applyMiddleware());
export default store;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment