UNPKG

@wenn/onb

Version:

onb-core

11 lines (9 loc) 227 B
import { SAVE_CAMUNDA } from '../constants'; export default function saveCamundaReducer(state = {}, action) { switch (action.type) { case SAVE_CAMUNDA: return action.camunda; default: return state; } }