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 categorias = [ | |
{ | |
icono: "cafe", | |
nombre: "Café" | |
}, | |
{ | |
icono: "hamburguesa", | |
nombre: "Hamburguesas" | |
}, |
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 productos = [ | |
{ | |
nombre: "Café Caramel con Chocolate", | |
precio: 59.9, | |
imagen: "cafe_01", | |
categoriaId: 1 | |
}, | |
{ | |
nombre: "Café Frio con Chocolate Grande", |