UNPKG

thon-product-card

Version:

este es mi paquete de pruebas para subir a NPM.

14 lines (12 loc) 312 B
import { Product } from "../interfaces/interfaces"; const product1 = { id: '1', title: 'mug - coffe nice', img: './coffee-mug.png' } const product2 = { id: '2', title: 'mug - coffe nice 2', img: './coffee-mug2.png' } export const products: Product[] = [product1, product2];