A simple App using React and an API
- More robust error handling in form input fields
- A slider for some of the form input fields
- Older IE compatibility.
- Tests
- Responsive Auto Loan Calculator.
- Use the following inputs:
- Car Price
- Downpayment
- Loan Duration
- Interest Rate
- Return the following:
- Estimated monthly payment
- Total interest paid (over the duration of the loan)
- Amortization schedule
.
├── /public
│ └── favicon.ico
│ └── index.html
│ └── manifest.json
│ └── robots.txt
├── /src
│ ├── /components
│ │ ├── loanForm.jsx
│ │ └── loanResults.jsx
│ ├── /styles
│ │ ├── reset.css
│ │ ├── variables.scss
│ │ ├── mixins.scss
│ │ ├── loan-form.scss
│ │ └── loan-results.scss
│ ├── App.scss
│ ├── App.test.js
│ ├── serviceWorker.js
│ └── index.jsx
├── package.json
└── README.md
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Runs the testing suite.