fcc-challenges/pomodoro-clock-react/src/reducers/breakLengthReducer.js

15 lines
259 B
JavaScript
Raw Normal View History

2020-06-11 01:36:48 -07:00
import { SETBREAKLENGTH } from "../actions/breakLengthAction";
export default (state, action) => {
if (!state) {
state = 5;
}
switch (action.type) {
case SETBREAKLENGTH:
return action.breakLength;
default:
return state;
}
};