const example = [
{ id: 1,
name: 'Spaghetti',
price: $20
description: 'Spaghetti and meatballs'
(There could be more options depending on what we want to display)
},
];
Heres an example of how the dummy data is going to be set up and we are going to have one of these sections for each of the categories: Lunch, Dinner, Desserts etc.
const example = [
{ id: 1, name: 'Spaghetti', price: $20 description: 'Spaghetti and meatballs' (There could be more options depending on what we want to display) }, ]; Heres an example of how the dummy data is going to be set up and we are going to have one of these sections for each of the categories: Lunch, Dinner, Desserts etc.