Skip to content

Instantly share code, notes, and snippets.

@madan712
Created March 31, 2019 12:14
Show Gist options
  • Save madan712/6316b984e0027f7b5c80726ad883573e to your computer and use it in GitHub Desktop.
Save madan712/6316b984e0027f7b5c80726ad883573e to your computer and use it in GitHub Desktop.
AppStore.js - Simple React + Redux example
import {createStore} from 'redux';
import AppReducer from "./AppReducer";
const AppStore = createStore(AppReducer);
export default AppStore;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment