UNPKG
thon-product-card
Version:
latest (0.1.0)
0.1.0
este es mi paquete de pruebas para subir a NPM.
https.eternum-dev.com
eternum-dev/thon-proyect-card
thon-product-card
/
src
/
data
/
products.ts
14 lines
(12 loc)
•
312 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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];