UNPKG

instantjob-recruiter-client

Version:

a set of tools for creating an instantjob recruiter react client

15 lines (12 loc) 283 B
import {store_items} from './base' const initial_state = { demands: {}, } export function demands(state = initial_state, action) { switch (action.type) { case "store_demands": return store_items(state, "demands", action.demands) default: return state } }