A lightweight React web calculator supporting basic arithmetic operations.
Styled with Tailwind CSS and deployed via GitHub Pages for instant public access.
- Perform basic arithmetic operations (add, subtract, multiply, divide)
- Clear and responsive layout built with Tailwind CSS
- Real-time display updates as you type
- Keyboard input support (optional improvement)
- Deployed to GitHub Pages for live demo access
Follow these steps to run the project locally:
# Clone the repository
git clone https://github.com/Keremunce/react-calculator-app.git
# Navigate into the folder
cd react-calculator-app
# Install dependencies
npm install
# Run the development server
npm startTo build and deploy on GitHub Pages:
npm run build
npm run deployreact-calculator-app/
│
├── public/
│ └── index.html
│
├── src/
│ ├── components/
│ │ ├── Button.jsx
│ │ ├── Display.jsx
│ │ └── Calculator.jsx
│ ├── App.jsx
│ ├── index.css
│ └── main.jsx
│
├── package.json
└── tailwind.config.js
MIT License © Kerem ÜNCE