Created
March 31, 2019 12:14
-
-
Save madan712/6316b984e0027f7b5c80726ad883573e to your computer and use it in GitHub Desktop.
AppStore.js - Simple React + Redux example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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