summaryrefslogtreecommitdiff
path: root/app/client/modules/module.reducer.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-28 20:18:20 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-28 20:18:20 +0200
commit84aca1791d43ae5a65bd88747636e418b380ad64 (patch)
treef56687c992bb6dc3956e8744be8030a48f00d95e /app/client/modules/module.reducer.js
parentc248031739699775477c838f8e836fedf243c720 (diff)
reconsidering datasets component... stub in api client
Diffstat (limited to 'app/client/modules/module.reducer.js')
-rw-r--r--app/client/modules/module.reducer.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/client/modules/module.reducer.js b/app/client/modules/module.reducer.js
new file mode 100644
index 0000000..de2f9bc
--- /dev/null
+++ b/app/client/modules/module.reducer.js
@@ -0,0 +1,7 @@
+import { combineReducers } from 'redux'
+
+import samplernnReducer from './samplernn/samplernn.reducer'
+
+export const moduleReducer = combineReducers({
+ samplernn: samplernnReducer
+})