This is a simple calculator application built with React. It allows users to perform basic arithmetic operations such as addition, subtraction, multiplication, and division.
- Basic arithmetic operations: addition, subtraction, multiplication, and division.
- Responsive design for use on various devices.
- Clear and user-friendly interface.
These instructions will help you set up and run the calculator app on your local machine for development and testing purposes.
Ensure you have Node.js and npm installed on your machine. You can download them from Node.js.
-
Clone the repository:
git clone https://github.com/oraykt/reactjs-calculator.git
-
Navigate to the project directory:
cd calculator-app
-
Install the dependencies:
npm install
To start the app in development mode, run:
npm start
The app will open in your default browser at http://localhost:3000.
- The calculator interface displays a numeric keypad and operation buttons
- Click the number buttons to input values
- Click operation buttons (+, -, ×, ÷) to perform calculations
- Press "=" to see the result
- Use "C" to clear the display and start over
- React - The web framework used
- Create React App - Project bootstrapping
- npm - Package management
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by basic calculator functionality
- Thanks to the React community for excellent documentation and resources