mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-02 17:43:10 -07:00
9 lines
131 B
JavaScript
9 lines
131 B
JavaScript
export const SETCLOCK = "SETCLOCK";
|
|
|
|
export const clockAction = (time) => {
|
|
return {
|
|
type: SETCLOCK,
|
|
time: time,
|
|
};
|
|
};
|