summaryrefslogtreecommitdiff
path: root/app/client/modules/module.reducer.js
blob: de2f9bcfc7552f203b51378cd9f55f6377fc9340 (plain)
1
2
3
4
5
6
7
import { combineReducers } from 'redux'

import samplernnReducer from './samplernn/samplernn.reducer'

export const moduleReducer = combineReducers({
  samplernn: samplernnReducer
})