Redux boilerplate code

This commit is contained in:
Rodrigo Pedroso 2019-06-19 14:24:21 -04:00
commit 69d47c85f0
8 changed files with 12058 additions and 7 deletions

6
src/js/store/index.js Normal file
View file

@ -0,0 +1,6 @@
import { createStore } from "redux"
import rootReducer from "../reducers/index"
const store = createStore(rootReducer)
export default store