├── src
├── Calculator
│ ├── Allcss.css
│ ├── Header.jsx
│ ├── mainCalculator.jsx
│ └── Buttons.jsx
├── assets
│ ├── th.jpg
│ ├── deleteicon.png
│ └── react.svg
├── src.url
├── App.jsx
├── main.jsx
└── index.css
└── index.html
/src/Calculator/Allcss.css:
--------------------------------------------------------------------------------
1 | .mainBody{
2 | height: 68vh;
3 | width: 45vh;
4 | }
--------------------------------------------------------------------------------
/src/assets/th.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohiburrehmanniazi/React-Calculator/HEAD/src/assets/th.jpg
--------------------------------------------------------------------------------
/src/assets/deleteicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mohiburrehmanniazi/React-Calculator/HEAD/src/assets/deleteicon.png
--------------------------------------------------------------------------------
/src/src.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=https://github.com/Muzammil-Bilwani/MEAN-Stack-tutorial/tree/main/week-react/reactapp/src
3 |
--------------------------------------------------------------------------------
/src/App.jsx:
--------------------------------------------------------------------------------
1 | import Calculator from "./Calculator/mainCalculator"
2 |
3 | function App (){
4 |
5 | return(
6 |
7 |