Created
July 17, 2018 13:48
-
-
Save adamgiese/ddf28e400a12332e6967827c86344103 to your computer and use it in GitHub Desktop.
Example Restaurant Payload
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
const restaurants = [ | |
{ | |
name: "Pizza Planet", | |
cuisine: 'Pizza', | |
hours: { | |
open: 11, | |
close: 22, | |
}, | |
}, | |
{ | |
name: "JJ's Diner", | |
cuisine: 'Breakfast', | |
hours: { | |
open: 7, | |
close: 14, | |
}, | |
}, | |
{ | |
name: "Bob's Burgers", | |
cuisine: 'Burgers', | |
hours: { | |
open: 11, | |
close: 21, | |
}, | |
}, | |
{ | |
name: "Central Perk", | |
cuisine: 'Coffee', | |
hours: { | |
open: 6, | |
close: 20, | |
}, | |
}, | |
{ | |
name: "Monks Cafe", | |
cuisine: 'American', | |
hours: { | |
open: 6, | |
close: 20, | |
} | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment