11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
|
import * as actions from '../actions';
|
||
|
import { Map } from 'immutable';
|
||
|
|
||
|
export default function allProjects(state = Map(), action) {
|
||
|
console.log(action.type);
|
||
|
if (action.type === actions.GET_PROJECTS.SUCCESS) {
|
||
|
return Map(action.payload);
|
||
|
}
|
||
|
return state;
|
||
|
};
|