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

15 lines
243 B
JavaScript

import { SETTIMER } from "../actions/timerAction";
export default (state, action) => {
if (!state) {
state = 'Session';
}
switch (action.type) {
case SETTIMER:
return action.timer;
default:
return state;
}
};