Forked from
KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
125 commits behind the upstream repository.
-
Rafael László authoredRafael László authored
MentorsReducer.js 244 B
import { GET_MENTORS } from '../actions/types';
const INITIAL_STATE = [];
export default (state = INITIAL_STATE, action) => {
switch (action.type) {
case GET_MENTORS:
return action.payload;
default:
return state;
}
};