-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
33 lines (24 loc) · 1010 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* import { mostrarProductos } from "./app.js";
import { agregarAlCarrito } from "./nuevoCarrito.js";
import { actualizarTotalesCarrito } from "./totalCarrito.js";
import { obtenerCarritoStorage } from "./storage.js";
document.addEventListener('DOMContentLoaded', () => {
mostrarProductos();
if (localStorage.getItem('carrito')) {
const carrito = obtenerCarritoStorage();
agregarAlCarrito(carrito);
actualizarTotalesCarrito(carrito);
};
}); */
import { mostrarProductos } from "./App.js";
import { pintarCarrito } from "./src/accionesCarrito.js";
import { actualizarTotalesCarrito } from "./src/actualizarCarrito.js";
import { obtenerCarritoStorage } from "./src/storage.js";
document.addEventListener('DOMContentLoaded', () => {
mostrarProductos();
if (localStorage.getItem('carrito')) {
const carrito = obtenerCarritoStorage();
pintarCarrito(carrito);
actualizarTotalesCarrito(carrito);
};
});