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

9 lines
197 B
JavaScript

export const SETCLOCKISRUNNING = "SETCLOCKISRUNNING";
export const clockIsRunningAction = (clockIsRunning) => {
return {
type: SETCLOCKISRUNNING,
clockIsRunning: clockIsRunning,
};
};