Reducer and mapping tests

This commit is contained in:
Federico Kereki
2018-08-15 23:17:29 -03:00
parent 8f71966175
commit fbcbab908d
8 changed files with 110 additions and 3 deletions
+1 -1
View File
@@ -3,6 +3,6 @@
import { createStore, applyMiddleware } from "redux";
import thunk from "redux-thunk";
import { reducer } from "./worlds.reducer.js";
import { reducer } from "./world.reducer";
export const store = createStore(reducer, applyMiddleware(thunk));