├── .gitignore ├── LICENSE ├── README.md ├── _redirects ├── package.json ├── public ├── AquiconGithub.png ├── download.png ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── actions │ ├── constants.ts │ └── gitrepoAction.ts ├── api │ ├── baseURL.ts │ ├── fetchdata.ts │ ├── keys.ts │ └── routes.ts ├── assets │ ├── Octocatgif.tsx │ └── octocat.gif ├── components │ ├── Header.tsx │ ├── Home.tsx │ ├── RouterOutlet.tsx │ ├── Stalk.tsx │ └── ThemeProvider.tsx ├── index.css ├── index.tsx ├── react-app-env.d.ts ├── reducers │ ├── gitrepoReducer.ts │ └── index.ts ├── serviceWorker.ts ├── store │ ├── appStore.tsx │ ├── configureStore.dev.tsx │ ├── configureStore.prod.tsx │ └── configureStore.tsx └── typedeclare.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/package.json -------------------------------------------------------------------------------- /public/AquiconGithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/public/AquiconGithub.png -------------------------------------------------------------------------------- /public/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/public/download.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/actions/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/actions/constants.ts -------------------------------------------------------------------------------- /src/actions/gitrepoAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/actions/gitrepoAction.ts -------------------------------------------------------------------------------- /src/api/baseURL.ts: -------------------------------------------------------------------------------- 1 | export const GIT_BASE_URL = "https://api.github.com"; -------------------------------------------------------------------------------- /src/api/fetchdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/api/fetchdata.ts -------------------------------------------------------------------------------- /src/api/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/api/keys.ts -------------------------------------------------------------------------------- /src/api/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/api/routes.ts -------------------------------------------------------------------------------- /src/assets/Octocatgif.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/assets/Octocatgif.tsx -------------------------------------------------------------------------------- /src/assets/octocat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/assets/octocat.gif -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/components/Home.tsx -------------------------------------------------------------------------------- /src/components/RouterOutlet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/components/RouterOutlet.tsx -------------------------------------------------------------------------------- /src/components/Stalk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/components/Stalk.tsx -------------------------------------------------------------------------------- /src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reducers/gitrepoReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/reducers/gitrepoReducer.ts -------------------------------------------------------------------------------- /src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/reducers/index.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/store/appStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/store/appStore.tsx -------------------------------------------------------------------------------- /src/store/configureStore.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/store/configureStore.dev.tsx -------------------------------------------------------------------------------- /src/store/configureStore.prod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/store/configureStore.prod.tsx -------------------------------------------------------------------------------- /src/store/configureStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/store/configureStore.tsx -------------------------------------------------------------------------------- /src/typedeclare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/src/typedeclare.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkblaze01/git-stalk/HEAD/tsconfig.json --------------------------------------------------------------------------------