├── .gitignore ├── README.md ├── package.json ├── public └── index.html ├── src ├── components │ ├── AsyncComponent.js │ ├── BarChart.js │ ├── BarChartAsync.js │ ├── LineChart.js │ ├── LineChartAsync.js │ ├── app.js │ └── loader.js └── index.js ├── webpack-dev-config.js └── webpack-prod-config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [Progressive Web App Loading](https://medium.com/@lavrton/fb43999735c6) 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/public/index.html -------------------------------------------------------------------------------- /src/components/AsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/AsyncComponent.js -------------------------------------------------------------------------------- /src/components/BarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/BarChart.js -------------------------------------------------------------------------------- /src/components/BarChartAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/BarChartAsync.js -------------------------------------------------------------------------------- /src/components/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/LineChart.js -------------------------------------------------------------------------------- /src/components/LineChartAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/LineChartAsync.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/components/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/components/loader.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack-dev-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/webpack-dev-config.js -------------------------------------------------------------------------------- /webpack-prod-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavrton/Progressive-Web-App-Loading/HEAD/webpack-prod-config.js --------------------------------------------------------------------------------