diff options
author | Victor Chabbert <chabbertvi@eisti.eu> | 2017-01-22 14:48:24 +0100 |
---|---|---|
committer | Victor Chabbert <chabbertvi@eisti.eu> | 2017-01-22 14:48:37 +0100 |
commit | 7b6230dc1c2613b965f4ff21836432076248dfde (patch) | |
tree | 83d8732ce9f87104faf4c6789c79d1d74dc6b575 /frontend/src/containers/app.js | |
parent | Refactor user reducer to player reducer (diff) | |
download | seven-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.js | 2 |
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 } |