UNPKG

@metacell/geppetto-meta-client

Version:

Geppetto web frontend. Geppetto is an open-source platform to build web-based tools to visualize and simulate neuroscience data and models.

9 lines 297 B
import { IMPORT_APPLICATION_STATE } from '../actions'; export var reducerDecorator = function reducerDecorator(subReducer) { return function (state, action) { if (action.type === IMPORT_APPLICATION_STATE) { state = action.data.redux; } return subReducer(state, action); }; };