fcc-challenges/calculator-react/src/reducers/inputStringReducer.js

15 lines
261 B
JavaScript

import { SETINPUTSTRING } from "../actions/inputStringAction";
export default (state, action) => {
if (!state) {
state = '';
}
switch (action.type) {
case SETINPUTSTRING:
return action.inputString;
default:
return state;
};
};