fcc-challenges/calculator-react/src/actions/inputStringAction.js

9 lines
176 B
JavaScript

export const SETINPUTSTRING = "SETINPUTSTRING";
export const inputStringAction = (inputString) => {
return {
type: SETINPUTSTRING,
inputString: inputString,
};
};