├── .github └── workflows │ ├── merge-dev.yam │ ├── merge-main.yam │ └── merge-test.yam ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── readme ├── Code_Submission_Reqs.md ├── Technical_Instructions.md └── Welcome.md ├── src ├── App.tsx ├── __tests__ │ └── LocationList.test.js ├── apis │ └── index.ts ├── components │ ├── LocationList.tsx │ ├── SearchBar.tsx │ └── index.tsx ├── screens │ ├── Home.tsx │ ├── Info.tsx │ ├── MapList.tsx │ └── index.tsx ├── service │ ├── index.ts │ └── soupKitchenService.ts └── store │ ├── index.ts │ ├── soupKitchen │ └── slice.ts │ └── store.ts ├── tsconfig.json └── yarn.lock /.github/workflows/merge-dev.yam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/.github/workflows/merge-dev.yam -------------------------------------------------------------------------------- /.github/workflows/merge-main.yam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/.github/workflows/merge-main.yam -------------------------------------------------------------------------------- /.github/workflows/merge-test.yam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/.github/workflows/merge-test.yam -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/package.json -------------------------------------------------------------------------------- /readme/Code_Submission_Reqs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme/Technical_Instructions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme/Welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/readme/Welcome.md -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__tests__/LocationList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/__tests__/LocationList.test.js -------------------------------------------------------------------------------- /src/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/apis/index.ts -------------------------------------------------------------------------------- /src/components/LocationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/components/LocationList.tsx -------------------------------------------------------------------------------- /src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/screens/Home.tsx -------------------------------------------------------------------------------- /src/screens/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/screens/Info.tsx -------------------------------------------------------------------------------- /src/screens/MapList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/screens/MapList.tsx -------------------------------------------------------------------------------- /src/screens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/screens/index.tsx -------------------------------------------------------------------------------- /src/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/service/index.ts -------------------------------------------------------------------------------- /src/service/soupKitchenService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/service/soupKitchenService.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/soupKitchen/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/store/soupKitchen/slice.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotSoupRepos/HotSoup-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------