Build a simple calculator. useReducer: Sometimes state becomes complicated in React, and there are multiple mutations you will need to implement on your data. useReducer helps simplify this by moving state management outside of the component. Implement the logic so that two numbers can be selected. Implement the logic to add these two selected numbers together. Same for subtraction Implement a c..