summaryrefslogtreecommitdiff
path: root/client/reducers/index.js
blob: ed59b601a0aa722e810de9b3774d666320f23f24 (plain)
1
2
3
4
5
6
7
8
9
import { combineReducers } from 'redux'

import currentTask from './currentTask'

const cortexApp = combineReducers({
  currentTask
})

export default cortexApp