├── .gitignore ├── README.md ├── package.json ├── public ├── _redirects ├── index.html ├── manifest.json └── robots.txt └── src ├── App.js ├── App.scss ├── App.test.js ├── color.scss ├── component ├── ActionButton │ ├── ActionButton.jsx │ └── ActionButton.scss ├── BottomNav │ ├── BottomNav.jsx │ └── BottomNav.scss ├── ConfrimModal │ ├── ConfirmModal.jsx │ └── ConfirmModal.scss ├── ContentSlider │ ├── ContentSlider.jsx │ └── ContentSlider.scss ├── CreateCookbook │ ├── CreateCookbook.jsx │ └── CreateCookbook.scss ├── FeedCard │ ├── FeedCard.jsx │ └── FeedCard.scss ├── JumboCard │ ├── JumboCard.jsx │ └── JumboCard.scss ├── ListCard │ ├── ListCard.jsx │ └── ListCard.scss ├── SaveRecipes │ ├── SaveRecipes.jsx │ └── SaveRecipes.scss ├── SearchBox │ ├── SearchBox.jsx │ └── SearchBox.scss ├── SeeMore │ ├── SeeMore.jsx │ └── SeeMore.scss └── ToastInfo │ ├── ToastInfo.jsx │ └── ToastInfo.scss ├── icon ├── add-cookbook.svg ├── arrow-black.svg ├── arrow-orange.svg ├── arrow-white.svg ├── check-fat.svg ├── check-thin.svg ├── close-white.svg ├── close.svg ├── continue.svg ├── cookbook-active.svg ├── cookbook-unactive.svg ├── discover-active.svg ├── discover-unactive.svg ├── dots-menu.svg ├── empty-cookbook.svg ├── favorite-fill.svg ├── favorite-unfill.svg ├── home-active.svg ├── home-unactive.svg ├── likes-black.svg ├── likes-white.svg ├── not-found.svg ├── pencil-edit.svg ├── save-cookbook-active.svg ├── save-cookbook-unactive.svg ├── search.svg ├── sorry.svg ├── sort.svg ├── star-black.svg ├── star-white.svg ├── time.svg └── trash.svg ├── index.js ├── index.scss ├── page ├── Cookbook │ ├── Cookbook.jsx │ ├── Cookbook.scss │ ├── CookbookItem │ │ ├── CookbookItem.jsx │ │ └── CookbookItem.scss │ ├── EditCookbook │ │ ├── EditCookbook.jsx │ │ └── EditCookbook.scss │ └── OpenCookbook │ │ ├── OpenCookbook.jsx │ │ └── OpenCookbook.scss ├── Details │ ├── Details.jsx │ ├── Details.scss │ └── DetailsTab │ │ ├── DetailsTab.jsx │ │ └── DetailsTab.scss ├── Discover │ ├── Discover.jsx │ └── Discover.scss ├── Error │ ├── Error.jsx │ └── Error.scss ├── Home │ ├── Home.jsx │ └── Home.scss └── Search │ ├── Search.jsx │ ├── Search.scss │ ├── SearchAutocomplete │ ├── SearchAutocomplete.jsx │ └── SearchAutocomplete.scss │ └── SearchResults │ ├── SearchResults.jsx │ └── SearchResults.scss ├── reportWebVitals.js ├── setupTests.js └── store ├── index.js ├── libs ├── common.js ├── request.js └── storage.js └── reducer ├── cookbook.js ├── details.js ├── discover.js ├── error.js ├── home.js ├── search.js └── toast.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/color.scss -------------------------------------------------------------------------------- /src/component/ActionButton/ActionButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ActionButton/ActionButton.jsx -------------------------------------------------------------------------------- /src/component/ActionButton/ActionButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ActionButton/ActionButton.scss -------------------------------------------------------------------------------- /src/component/BottomNav/BottomNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/BottomNav/BottomNav.jsx -------------------------------------------------------------------------------- /src/component/BottomNav/BottomNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/BottomNav/BottomNav.scss -------------------------------------------------------------------------------- /src/component/ConfrimModal/ConfirmModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ConfrimModal/ConfirmModal.jsx -------------------------------------------------------------------------------- /src/component/ConfrimModal/ConfirmModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ConfrimModal/ConfirmModal.scss -------------------------------------------------------------------------------- /src/component/ContentSlider/ContentSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ContentSlider/ContentSlider.jsx -------------------------------------------------------------------------------- /src/component/ContentSlider/ContentSlider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ContentSlider/ContentSlider.scss -------------------------------------------------------------------------------- /src/component/CreateCookbook/CreateCookbook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/CreateCookbook/CreateCookbook.jsx -------------------------------------------------------------------------------- /src/component/CreateCookbook/CreateCookbook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/CreateCookbook/CreateCookbook.scss -------------------------------------------------------------------------------- /src/component/FeedCard/FeedCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/FeedCard/FeedCard.jsx -------------------------------------------------------------------------------- /src/component/FeedCard/FeedCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/FeedCard/FeedCard.scss -------------------------------------------------------------------------------- /src/component/JumboCard/JumboCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/JumboCard/JumboCard.jsx -------------------------------------------------------------------------------- /src/component/JumboCard/JumboCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/JumboCard/JumboCard.scss -------------------------------------------------------------------------------- /src/component/ListCard/ListCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ListCard/ListCard.jsx -------------------------------------------------------------------------------- /src/component/ListCard/ListCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ListCard/ListCard.scss -------------------------------------------------------------------------------- /src/component/SaveRecipes/SaveRecipes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/SaveRecipes/SaveRecipes.jsx -------------------------------------------------------------------------------- /src/component/SaveRecipes/SaveRecipes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/SaveRecipes/SaveRecipes.scss -------------------------------------------------------------------------------- /src/component/SearchBox/SearchBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/SearchBox/SearchBox.jsx -------------------------------------------------------------------------------- /src/component/SearchBox/SearchBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/SearchBox/SearchBox.scss -------------------------------------------------------------------------------- /src/component/SeeMore/SeeMore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/SeeMore/SeeMore.jsx -------------------------------------------------------------------------------- /src/component/SeeMore/SeeMore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/SeeMore/SeeMore.scss -------------------------------------------------------------------------------- /src/component/ToastInfo/ToastInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ToastInfo/ToastInfo.jsx -------------------------------------------------------------------------------- /src/component/ToastInfo/ToastInfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/component/ToastInfo/ToastInfo.scss -------------------------------------------------------------------------------- /src/icon/add-cookbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/add-cookbook.svg -------------------------------------------------------------------------------- /src/icon/arrow-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/arrow-black.svg -------------------------------------------------------------------------------- /src/icon/arrow-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/arrow-orange.svg -------------------------------------------------------------------------------- /src/icon/arrow-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/arrow-white.svg -------------------------------------------------------------------------------- /src/icon/check-fat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/check-fat.svg -------------------------------------------------------------------------------- /src/icon/check-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/check-thin.svg -------------------------------------------------------------------------------- /src/icon/close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/close-white.svg -------------------------------------------------------------------------------- /src/icon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/close.svg -------------------------------------------------------------------------------- /src/icon/continue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/continue.svg -------------------------------------------------------------------------------- /src/icon/cookbook-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/cookbook-active.svg -------------------------------------------------------------------------------- /src/icon/cookbook-unactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/cookbook-unactive.svg -------------------------------------------------------------------------------- /src/icon/discover-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/discover-active.svg -------------------------------------------------------------------------------- /src/icon/discover-unactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/discover-unactive.svg -------------------------------------------------------------------------------- /src/icon/dots-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/dots-menu.svg -------------------------------------------------------------------------------- /src/icon/empty-cookbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/empty-cookbook.svg -------------------------------------------------------------------------------- /src/icon/favorite-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/favorite-fill.svg -------------------------------------------------------------------------------- /src/icon/favorite-unfill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/favorite-unfill.svg -------------------------------------------------------------------------------- /src/icon/home-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/home-active.svg -------------------------------------------------------------------------------- /src/icon/home-unactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/home-unactive.svg -------------------------------------------------------------------------------- /src/icon/likes-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/likes-black.svg -------------------------------------------------------------------------------- /src/icon/likes-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/likes-white.svg -------------------------------------------------------------------------------- /src/icon/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/not-found.svg -------------------------------------------------------------------------------- /src/icon/pencil-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/pencil-edit.svg -------------------------------------------------------------------------------- /src/icon/save-cookbook-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/save-cookbook-active.svg -------------------------------------------------------------------------------- /src/icon/save-cookbook-unactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/save-cookbook-unactive.svg -------------------------------------------------------------------------------- /src/icon/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/search.svg -------------------------------------------------------------------------------- /src/icon/sorry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/sorry.svg -------------------------------------------------------------------------------- /src/icon/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/sort.svg -------------------------------------------------------------------------------- /src/icon/star-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/star-black.svg -------------------------------------------------------------------------------- /src/icon/star-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/star-white.svg -------------------------------------------------------------------------------- /src/icon/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/time.svg -------------------------------------------------------------------------------- /src/icon/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/icon/trash.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/page/Cookbook/Cookbook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/Cookbook.jsx -------------------------------------------------------------------------------- /src/page/Cookbook/Cookbook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/Cookbook.scss -------------------------------------------------------------------------------- /src/page/Cookbook/CookbookItem/CookbookItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/CookbookItem/CookbookItem.jsx -------------------------------------------------------------------------------- /src/page/Cookbook/CookbookItem/CookbookItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/CookbookItem/CookbookItem.scss -------------------------------------------------------------------------------- /src/page/Cookbook/EditCookbook/EditCookbook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/EditCookbook/EditCookbook.jsx -------------------------------------------------------------------------------- /src/page/Cookbook/EditCookbook/EditCookbook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/EditCookbook/EditCookbook.scss -------------------------------------------------------------------------------- /src/page/Cookbook/OpenCookbook/OpenCookbook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/OpenCookbook/OpenCookbook.jsx -------------------------------------------------------------------------------- /src/page/Cookbook/OpenCookbook/OpenCookbook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Cookbook/OpenCookbook/OpenCookbook.scss -------------------------------------------------------------------------------- /src/page/Details/Details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Details/Details.jsx -------------------------------------------------------------------------------- /src/page/Details/Details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Details/Details.scss -------------------------------------------------------------------------------- /src/page/Details/DetailsTab/DetailsTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Details/DetailsTab/DetailsTab.jsx -------------------------------------------------------------------------------- /src/page/Details/DetailsTab/DetailsTab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Details/DetailsTab/DetailsTab.scss -------------------------------------------------------------------------------- /src/page/Discover/Discover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Discover/Discover.jsx -------------------------------------------------------------------------------- /src/page/Discover/Discover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Discover/Discover.scss -------------------------------------------------------------------------------- /src/page/Error/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Error/Error.jsx -------------------------------------------------------------------------------- /src/page/Error/Error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Error/Error.scss -------------------------------------------------------------------------------- /src/page/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Home/Home.jsx -------------------------------------------------------------------------------- /src/page/Home/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Home/Home.scss -------------------------------------------------------------------------------- /src/page/Search/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Search/Search.jsx -------------------------------------------------------------------------------- /src/page/Search/Search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Search/Search.scss -------------------------------------------------------------------------------- /src/page/Search/SearchAutocomplete/SearchAutocomplete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Search/SearchAutocomplete/SearchAutocomplete.jsx -------------------------------------------------------------------------------- /src/page/Search/SearchAutocomplete/SearchAutocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Search/SearchAutocomplete/SearchAutocomplete.scss -------------------------------------------------------------------------------- /src/page/Search/SearchResults/SearchResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Search/SearchResults/SearchResults.jsx -------------------------------------------------------------------------------- /src/page/Search/SearchResults/SearchResults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/page/Search/SearchResults/SearchResults.scss -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/libs/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/libs/common.js -------------------------------------------------------------------------------- /src/store/libs/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/libs/request.js -------------------------------------------------------------------------------- /src/store/libs/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/libs/storage.js -------------------------------------------------------------------------------- /src/store/reducer/cookbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/cookbook.js -------------------------------------------------------------------------------- /src/store/reducer/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/details.js -------------------------------------------------------------------------------- /src/store/reducer/discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/discover.js -------------------------------------------------------------------------------- /src/store/reducer/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/error.js -------------------------------------------------------------------------------- /src/store/reducer/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/home.js -------------------------------------------------------------------------------- /src/store/reducer/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/search.js -------------------------------------------------------------------------------- /src/store/reducer/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wahyall/foody-cipe/HEAD/src/store/reducer/toast.js --------------------------------------------------------------------------------