├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.jsx ├── apis └── coinGecko.js ├── chartConfigs └── chartConfigs.js ├── components ├── AddCoin.jsx ├── Coin.jsx ├── CoinData.jsx ├── CoinList.jsx ├── Header.jsx └── HistoryChart.jsx ├── context └── watchListContext.js ├── index.js └── pages ├── CoinDetailPage.jsx └── CoinSummaryPage.jsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/apis/coinGecko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/apis/coinGecko.js -------------------------------------------------------------------------------- /src/chartConfigs/chartConfigs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/chartConfigs/chartConfigs.js -------------------------------------------------------------------------------- /src/components/AddCoin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/components/AddCoin.jsx -------------------------------------------------------------------------------- /src/components/Coin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/components/Coin.jsx -------------------------------------------------------------------------------- /src/components/CoinData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/components/CoinData.jsx -------------------------------------------------------------------------------- /src/components/CoinList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/components/CoinList.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/HistoryChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/components/HistoryChart.jsx -------------------------------------------------------------------------------- /src/context/watchListContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/context/watchListContext.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/CoinDetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/pages/CoinDetailPage.jsx -------------------------------------------------------------------------------- /src/pages/CoinSummaryPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanjeev-Thiyagarajan/cryptocurrency-tracker/HEAD/src/pages/CoinSummaryPage.jsx --------------------------------------------------------------------------------