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

9 lines
176 B
JavaScript

export const SETBREAKLENGTH = "SETBREAKLENGTH";
export const breakLengthAction = (breakLength) => {
return {
type: SETBREAKLENGTH,
breakLength: breakLength,
};
};