mock.js
701 Bytes
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
// Products photos
import img1 from '../../images/products/img1.jpg';
import img2 from '../../images/products/img2.jpg';
import img3 from '../../images/products/img3.jpg';
export default [
{
id: 0,
img: img1,
title: 'trainers',
description: 'Trainers In White',
price: 76,
favourite: true,
label: false,
},
{
id: 1,
img: img2,
title: 'boots',
description: 'Trainers In Blue',
price: {
old: 56,
new: 45,
percents: 20,
},
favourite: false,
label: 'Sale',
},
{
id: 2,
img: img3,
title: 'flat sandals',
description: 'Trainers In White',
price: 55,
favourite: false,
label: 'New',
},
];