Skip to content

Instantly share code, notes, and snippets.

@adamgiese
Created July 17, 2018 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamgiese/ddf28e400a12332e6967827c86344103 to your computer and use it in GitHub Desktop.
Save adamgiese/ddf28e400a12332e6967827c86344103 to your computer and use it in GitHub Desktop.
Example Restaurant Payload
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