├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── components │ ├── Spinner.js │ ├── TabPanel.css │ ├── TabPanel.js │ ├── Table.js │ └── UserForm.js ├── index.css ├── index.js └── spinner.gif └── unfollower-detector.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/components/Spinner.js -------------------------------------------------------------------------------- /src/components/TabPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/components/TabPanel.css -------------------------------------------------------------------------------- /src/components/TabPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/components/TabPanel.js -------------------------------------------------------------------------------- /src/components/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/components/Table.js -------------------------------------------------------------------------------- /src/components/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/components/UserForm.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/index.js -------------------------------------------------------------------------------- /src/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/src/spinner.gif -------------------------------------------------------------------------------- /unfollower-detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiss/github-unfollower-detector/HEAD/unfollower-detector.png --------------------------------------------------------------------------------