├── README.md └── calculator ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── Button.jsx │ ├── Calculator.jsx │ ├── History.jsx │ └── image.png ├── index.css └── main.jsx ├── tailwind.config.js └── vite.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/README.md -------------------------------------------------------------------------------- /calculator/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/.eslintrc.cjs -------------------------------------------------------------------------------- /calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/.gitignore -------------------------------------------------------------------------------- /calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/README.md -------------------------------------------------------------------------------- /calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/index.html -------------------------------------------------------------------------------- /calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/package-lock.json -------------------------------------------------------------------------------- /calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/package.json -------------------------------------------------------------------------------- /calculator/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/postcss.config.js -------------------------------------------------------------------------------- /calculator/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/public/vite.svg -------------------------------------------------------------------------------- /calculator/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /calculator/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/App.jsx -------------------------------------------------------------------------------- /calculator/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/assets/react.svg -------------------------------------------------------------------------------- /calculator/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/components/Button.jsx -------------------------------------------------------------------------------- /calculator/src/components/Calculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/components/Calculator.jsx -------------------------------------------------------------------------------- /calculator/src/components/History.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/components/History.jsx -------------------------------------------------------------------------------- /calculator/src/components/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/components/image.png -------------------------------------------------------------------------------- /calculator/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/index.css -------------------------------------------------------------------------------- /calculator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/src/main.jsx -------------------------------------------------------------------------------- /calculator/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/tailwind.config.js -------------------------------------------------------------------------------- /calculator/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliAsgharSWE/Calculator/HEAD/calculator/vite.config.js --------------------------------------------------------------------------------