summaryrefslogtreecommitdiff
path: root/client/reducers/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/reducers/index.js')
-rw-r--r--client/reducers/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/reducers/index.js b/client/reducers/index.js
index ed59b60..0dee19c 100644
--- a/client/reducers/index.js
+++ b/client/reducers/index.js
@@ -1,9 +1,11 @@
import { combineReducers } from 'redux'
import currentTask from './currentTask'
+import audioPlayer from './audioPlayer'
const cortexApp = combineReducers({
- currentTask
+ currentTask,
+ audioPlayer,
})
export default cortexApp