├── .gitignore ├── README.md ├── deploy.sh ├── package.json ├── public ├── 200.html ├── favicon.ico ├── index.html ├── manifest.json ├── quotes_summary.json └── quotes_summary_7d.json └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── AuthService.js ├── Calc.js ├── Callback.js ├── Dash.js ├── DashNav.js ├── Helper.js ├── Profile.js ├── SessionService.js ├── Summary.js └── WizardNav.js ├── global.js ├── index.css ├── index.js ├── logo.svg └── registerServiceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/deploy.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/package.json -------------------------------------------------------------------------------- /public/200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/public/200.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/quotes_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/public/quotes_summary.json -------------------------------------------------------------------------------- /public/quotes_summary_7d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/public/quotes_summary_7d.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/AuthService.js -------------------------------------------------------------------------------- /src/components/Calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/Calc.js -------------------------------------------------------------------------------- /src/components/Callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/Callback.js -------------------------------------------------------------------------------- /src/components/Dash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/Dash.js -------------------------------------------------------------------------------- /src/components/DashNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/DashNav.js -------------------------------------------------------------------------------- /src/components/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/Helper.js -------------------------------------------------------------------------------- /src/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/Profile.js -------------------------------------------------------------------------------- /src/components/SessionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/SessionService.js -------------------------------------------------------------------------------- /src/components/Summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/Summary.js -------------------------------------------------------------------------------- /src/components/WizardNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/components/WizardNav.js -------------------------------------------------------------------------------- /src/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/global.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikyandhi/Car-Insurance-Quotation-App/HEAD/src/registerServiceWorker.js --------------------------------------------------------------------------------