mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-09 11:53:15 -07:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
export const SETCLOCKISRUNNING = "SETCLOCKISRUNNING";
|
|
|
|
export const clockIsRunningAction = (clockIsRunning) => {
|
|
return {
|
|
type: SETCLOCKISRUNNING,
|
|
clockIsRunning: clockIsRunning,
|
|
};
|
|
};
|