aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/index.js
diff options
context:
space:
mode:
authorJason <jason.daurus@gmail.com>2016-06-25 00:36:39 +0800
committerJason <jason.daurus@gmail.com>2016-06-25 00:36:39 +0800
commit571c817f2176008c460c736580c0b35385808a2e (patch)
tree56c82a97c9eefdce37e05daebd35f669a93b554e /web/src/js/ducks/index.js
parent5a1677c3879c53abcaddbbfa4894fa8a117a3143 (diff)
downloadmitmproxy-571c817f2176008c460c736580c0b35385808a2e.tar.gz
mitmproxy-571c817f2176008c460c736580c0b35385808a2e.tar.bz2
mitmproxy-571c817f2176008c460c736580c0b35385808a2e.zip
[web] add msgQueue
Diffstat (limited to 'web/src/js/ducks/index.js')
-rw-r--r--web/src/js/ducks/index.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/src/js/ducks/index.js b/web/src/js/ducks/index.js
index ffde1a64..c2488d70 100644
--- a/web/src/js/ducks/index.js
+++ b/web/src/js/ducks/index.js
@@ -1,16 +1,16 @@
-import {combineReducers} from 'redux'
+import { combineReducers } from 'redux'
import eventLog from './eventLog'
import websocket from './websocket'
import flows from './flows'
import settings from './settings'
import ui from './ui'
+import msgQueue from './msgQueue'
-const rootReducer = combineReducers({
+export default combineReducers({
eventLog,
websocket,
flows,
settings,
- ui
+ ui,
+ msgQueue,
})
-
-export default rootReducer