UNPKG

symphony-integration-commons

Version:

Common components for 3rd party developers build the user facing application for Symphony Integrations.

15 lines (12 loc) 268 B
import { GET_APP_INSTRUCTIONS, } from '../actions'; const appInstructions = (state = {}, action) => { switch (action.type) { case GET_APP_INSTRUCTIONS: return action.instructions; default: return state; } }; export default appInstructions;