/
githubmirror
/
algorithm-visualizer
Обзор
Документация
Войти
/
githubmirror
/
algorithm-visualizer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/reducers/index.js
19 строк
625 B
Jason Park
Separate backend from algorithm-visualizer repo
08 июн 2019, 20:59
08 июн 2019, 20:59
faae63b
Код
Авторство
О чём код?
import { actions as currentActions } from './current'; import { actions as directoryActions } from './directory'; import { actions as envActions } from './env'; import { actions as playerActions } from './player'; import { actions as toastActions } from './toast'; export { default as current } from './current'; export { default as directory } from './directory'; export { default as env } from './env'; export { default as player } from './player'; export { default as toast } from './toast'; export const actions = { ...currentActions, ...directoryActions, ...envActions, ...playerActions, ...toastActions, };