├── .firebase └── hosting.ZGlzdA.cache ├── .firebaserc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .yo-rc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── components │ ├── App.js │ ├── Battle.js │ ├── ForkButton.js │ ├── Home.js │ ├── Loading.js │ ├── Nav.js │ ├── PlayerPreview.js │ ├── Popular.js │ └── Results.js ├── index.css ├── index.html ├── index.js └── utils │ └── api.js ├── firebase.json ├── package.json ├── screen.gif ├── src └── index.js └── webpack.config.js /.firebase/hosting.ZGlzdA.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.firebase/hosting.ZGlzdA.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/README.md -------------------------------------------------------------------------------- /app/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/App.js -------------------------------------------------------------------------------- /app/components/Battle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/Battle.js -------------------------------------------------------------------------------- /app/components/ForkButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/ForkButton.js -------------------------------------------------------------------------------- /app/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/Home.js -------------------------------------------------------------------------------- /app/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/Loading.js -------------------------------------------------------------------------------- /app/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/Nav.js -------------------------------------------------------------------------------- /app/components/PlayerPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/PlayerPreview.js -------------------------------------------------------------------------------- /app/components/Popular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/Popular.js -------------------------------------------------------------------------------- /app/components/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/components/Results.js -------------------------------------------------------------------------------- /app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/index.css -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/index.js -------------------------------------------------------------------------------- /app/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/app/utils/api.js -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/package.json -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/screen.gif -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyush97/GoGitter/HEAD/webpack.config.js --------------------------------------------------------------------------------