-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.ts
74 lines (74 loc) · 1.42 KB
/
products.ts
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export default {
'1': {
id: '1',
name: '16lb bag of Skittles',
imageUrl: '/static/skittles.jpg',
price: 16.0,
isTaxed: false,
isImported: false,
},
'2': {
id: '2',
name: 'Walkman',
imageUrl: '/static/walkman.jpg',
price: 99.99,
isTaxed: true,
isImported: false,
},
'3': {
id: '3',
name: 'Bag of microwave Popcorn',
imageUrl: '/static/popcorn.jpg',
price: 0.99,
isTaxed: false,
isImported: false,
},
'4': {
id: '4',
name: 'Imported bag of Vanilla-Hazelnut Coffee',
imageUrl: '/static/coffee.jpg',
price: 11.0,
isTaxed: false,
isImported: true,
},
'5': {
id: '5',
name: 'Imported Vespa',
imageUrl: '/static/vespa.jpg',
price: 15001.25,
isTaxed: true,
isImported: true,
},
'6': {
id: '6',
name: 'Imported crate of Almond Snickers',
imageUrl: '/static/snickers.jpg',
price: 75.99,
isTaxed: false,
isImported: true,
},
'7': {
id: '7',
name: 'Discman',
imageUrl: '/static/discman.jpg',
price: 55.0,
isTaxed: true,
isImported: false,
},
'8': {
id: '8',
name: 'Imported Bottle of Wine',
imageUrl: '/static/wine.jpg',
price: 10.0,
isTaxed: true,
isImported: true,
},
'9': {
id: '9',
name: '300# bag of Fair-Trade Coffee',
imageUrl: '/static/coffee.jpg',
price: 997.99,
isTaxed: false,
isImported: false,
},
};