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

9 lines
155 B
JavaScript

export const SETZEROTIME = "SETZEROTIME";
export const zeroTimeAction = (zeroTime) => {
return {
type: SETZEROTIME,
zeroTime: zeroTime,
};
};