fcc-challenges/pomodoro-clock-react/src/actions/timerAction.js

9 lines
134 B
JavaScript
Raw Normal View History

2020-06-11 01:36:48 -07:00
export const SETTIMER = "SETTIMER";
export const timerAction = (timer) => {
return {
type: SETTIMER,
timer: timer,
};
};