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

9 lines
197 B
JavaScript
Raw Normal View History

2020-06-11 01:36:48 -07:00
export const SETCLOCKISRUNNING = "SETCLOCKISRUNNING";
export const clockIsRunningAction = (clockIsRunning) => {
return {
type: SETCLOCKISRUNNING,
clockIsRunning: clockIsRunning,
};
};