Last active
April 12, 2021 17:28
-
-
Save MikelArnaiz/09311b79a03a1ede0e5b758453c4482d to your computer and use it in GitHub Desktop.
fake api restaurants
This file contains hidden or 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
[ | |
{ | |
"id": "1", | |
"name": "Bella Italia", | |
"menu": [ | |
{ | |
"name": "π 4 formaggi", | |
"price": 10 | |
}, | |
{ | |
"name": "π Pasta", | |
"price": 5 | |
} | |
] | |
}, | |
{ | |
"id": "2", | |
"name": "Meat lovers", | |
"menu": [ | |
{ | |
"name": "π XXL", | |
"price": 15 | |
}, | |
{ | |
"name": "π Ribs", | |
"price": 20 | |
} | |
] | |
}, | |
{ | |
"id": "3", | |
"name": "Indian", | |
"menu": [ | |
{ | |
"name": "π Curry", | |
"price": 20 | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment