import { Action } from 'redux'; import { SET_JOB_ID } from '../constants'; const jobInfo = (state: Partial = null, action: Action): Partial => { const { type, value } = action as BL.Anything; switch (type) { case SET_JOB_ID: return value; default: return state; } }; export default jobInfo;