├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── assets │ ├── fonts │ │ └── circular │ │ │ ├── CircularStd-Bold.otf │ │ │ ├── CircularStd-Book.otf │ │ │ └── CircularStd-Medium.otf │ └── images │ │ └── user-img-placeholder.jpeg ├── components │ ├── App.js │ ├── charts-theme.js │ ├── config.js │ ├── format-number.js │ └── styled-components.js ├── index.js ├── serviceWorker.js └── style.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/assets/fonts/circular/CircularStd-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/assets/fonts/circular/CircularStd-Bold.otf -------------------------------------------------------------------------------- /src/assets/fonts/circular/CircularStd-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/assets/fonts/circular/CircularStd-Book.otf -------------------------------------------------------------------------------- /src/assets/fonts/circular/CircularStd-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/assets/fonts/circular/CircularStd-Medium.otf -------------------------------------------------------------------------------- /src/assets/images/user-img-placeholder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/assets/images/user-img-placeholder.jpeg -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/charts-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/components/charts-theme.js -------------------------------------------------------------------------------- /src/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/components/config.js -------------------------------------------------------------------------------- /src/components/format-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/components/format-number.js -------------------------------------------------------------------------------- /src/components/styled-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/components/styled-components.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/src/style.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sikrigagan/online-retail-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------