A single web-page based calculator interface written in React
The caculator project is a simple user interface deisgn to test prop flow and state components in React.
src/component/keypad.js - The KeyPad
component displays the UI containing all the keys and inputs the user will need to interact with.
src/component/result.js - The Result
component displays the UI displaying the entered values, actions and result of a calculation.
src/component/caculator.js - All the logic and state is maintained inside of the Calculator
component.