fcc-challenges/random-quote-machine/src/actions/colorCounterAction.js

9 lines
156 B
JavaScript

export const INCCOLORCOUNT = "INCCOLORCOUNT";
export const colorCounterAction = (count) => {
return {
type: INCCOLORCOUNT,
count: count,
};
};