scinote-web/app/javascript/packs/shared/reducers/LeaveTeamReducer.js

9 lines
246 B
JavaScript
Raw Normal View History

2017-08-25 14:54:32 +08:00
import { SHOW_LEAVE_TEAM_MODAL } from '../../app/action_types'
export function showLeaveTeamModal(state = {show: false, id: 0}, action) {
if(action.type ===SHOW_LEAVE_TEAM_MODAL) {
return {...state, ...action.payload}
}
return state
}