PHP Classes

File: frontend/js/componentes/controllers/shopController.js

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Livraria   frontend/js/componentes/controllers/shopController.js   Download  
File: frontend/js/componentes/controllers/shopController.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Livraria
Manage a bookstore using micro-services
Author: By
Last change:
Date: 3 months ago
Size: 248 bytes
 

Contents

Class file image Download
import { fetchProducts } from '../models/productModel.js'; import { renderShop } from '../views/shopView.js'; import { addToCart, renderCart } from '../cart.js'; export function initShop() { renderShop(fetchProducts, addToCart, renderCart); }