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

import currentTask from './currentTask'
import audioPlayer from './audioPlayer'

const cortexApp = combineReducers({
  currentTask,
  audioPlayer,
})

export default cortexApp