diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-11 11:53:06 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:06:00 +0200 |
| commit | aa448cb5c3e2e372dad1c79ffc32ff32144b4140 (patch) | |
| tree | 19f6cff07ca75f541d543ca5e0eb65c50b8e93b8 /src/reducers/index.js | |
| parent | 8bd2bc91cc7e97f233031a42ccfda92af5e8bb96 (diff) | |
Move zoom level and map position info to store
Diffstat (limited to 'src/reducers/index.js')
| -rw-r--r-- | src/reducers/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js index f1f51337..1f3aa8f2 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -2,6 +2,7 @@ import {combineReducers} from "redux"; import {auth} from "./auth"; import {construction} from "./construction"; import {interactionLevel} from "./interaction-level"; +import {map} from "./map"; import {modals} from "./modals"; import {objects} from "./objects"; import {simulationList} from "./simulation-list"; @@ -17,6 +18,7 @@ const rootReducer = combineReducers({ currentDatacenterId, interactionLevel, construction, + map, }); export default rootReducer; |
