summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app.js
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 14:48:24 +0100
committerVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 14:48:37 +0100
commit7b6230dc1c2613b965f4ff21836432076248dfde (patch)
tree83d8732ce9f87104faf4c6789c79d1d74dc6b575 /frontend/src/containers/app.js
parentRefactor user reducer to player reducer (diff)
downloadseven-wonders-7b6230dc1c2613b965f4ff21836432076248dfde.tar.gz
seven-wonders-7b6230dc1c2613b965f4ff21836432076248dfde.tar.bz2
seven-wonders-7b6230dc1c2613b965f4ff21836432076248dfde.zip
Normalize games data from server and display games list
Diffstat (limited to 'frontend/src/containers/app.js')
-rw-r--r--frontend/src/containers/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/containers/app.js b/frontend/src/containers/app.js
index 40602efc..a8779b64 100644
--- a/frontend/src/containers/app.js
+++ b/frontend/src/containers/app.js
@@ -53,7 +53,7 @@ const mapStateToProps = (state) => ({
})
-import { actions } from '../redux/game'
+import { actions } from '../redux/games'
const mapDispatchToProps = {
createGame: actions.createGame
}
bgstack15