13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
|
import * as ActionTypes from '../../constants';
|
||
|
|
||
|
const sketches = (state = [], action) => {
|
||
|
switch (action.type) {
|
||
|
case ActionTypes.SET_PROJECTS:
|
||
|
return action.projects;
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default sketches;
|