1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { combineReducers } from 'redux' import audioPlayer from './audioPlayer' import currentTask from './currentTask' import tasks from './tasks' import folders from './folders' const cortexApp = combineReducers({ audioPlayer, currentTask, tasks, folders, }) export default cortexApp