status-js-desktop/app/reducers/counter.js

15 lines
361 B
JavaScript
Raw Permalink Normal View History

2018-11-08 17:51:41 +00:00
// @flow
import { INCREMENT_COUNTER, DECREMENT_COUNTER } from '../actions/counter';
import type { Action } from './types';
export default function counter(state: number = 0, action: Action) {
switch (action.type) {
case INCREMENT_COUNTER:
return state + 1;
case DECREMENT_COUNTER:
return state - 1;
default:
return state;
}
}