summaryrefslogtreecommitdiff
path: root/client/reducers/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-07-07 21:18:33 +0200
committerJules Laplace <julescarbon@gmail.com>2017-07-07 21:18:33 +0200
commitf8b61281be84a6e4e7a44be5109e688a7c56c671 (patch)
tree43797c6b6cfa5c0f89c020f8c89e0da10f791a55 /client/reducers/index.js
parent3d3a7b80d34c100846c8ae130b424b63ba3c0784 (diff)
refactor files so list updates while processing
Diffstat (limited to 'client/reducers/index.js')
-rw-r--r--client/reducers/index.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/client/reducers/index.js b/client/reducers/index.js
index 0dee19c..8fa287b 100644
--- a/client/reducers/index.js
+++ b/client/reducers/index.js
@@ -1,11 +1,15 @@
import { combineReducers } from 'redux'
-import currentTask from './currentTask'
import audioPlayer from './audioPlayer'
+import currentTask from './currentTask'
+import tasks from './tasks'
+import folders from './folders'
const cortexApp = combineReducers({
- currentTask,
audioPlayer,
+ currentTask,
+ tasks,
+ folders,
})
export default cortexApp