fcc-challenges/random-quote-machine/src/reducers/colorCounterReducer.js

11 lines
220 B
JavaScript

import { INCCOLORCOUNT } from "../actions/colorCounterAction";
export default (state = 1, action) => {
switch (action.type) {
case INCCOLORCOUNT:
return action.count;
default:
return state;
}
};