aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/reducers/index.js
blob: a8b2edbf7622772631323bd21ff3706886cfff43 (plain)
1
2
3
4
5
6
7
8
import {combineReducers} from 'redux';
import eventLog from './eventlog'

const mitmproxyApp = combineReducers({
    eventLog
});

export default mitmproxyApp