-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Google Vision API and Spoonacular API implementation
- Loading branch information
1 parent
648c223
commit cda5c8a
Showing
9 changed files
with
723 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
const mock_recipes = [ | ||
{ | ||
id: 1, | ||
title: "Shish Kabob Marinade", | ||
img: "https://spoonacular.com/recipeImages/115764-312x231.jpg", | ||
ready_in_minutes: 10 | ||
}, | ||
{ | ||
id: 2, | ||
title: "Easy Apple Dumplings with Sprite", | ||
img: "https://spoonacular.com/recipeImages/1036801-312x231.jpg", | ||
ready_in_minutes: 15 | ||
}, | ||
{ | ||
id: 3, | ||
title: "Simple Honey-Glazed Salmon", | ||
img: "https://spoonacular.com/recipeImages/181272-312x231.jpg", | ||
ready_in_minutes: 20 | ||
}, | ||
{ | ||
id: 4, | ||
title: "Roasted Sweet Potato Wedges", | ||
img: "https://spoonacular.com/recipeImages/303223-312x231.jpeg", | ||
ready_in_minutes: 30 | ||
} | ||
]; | ||
|
||
export default mock_recipes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.