-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproduct.js
31 lines (31 loc) · 1.11 KB
/
product.js
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
const products = [
{
id: '1',
name: 'Camera model 1',
description: 'Lorem ipsum dolor sit amet.',
price: 780,
photoURL: 'https://images.pexels.com/photos/51383/photo-camera-subject-photographer-51383.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'
},
{
id: '2',
name: 'Camera model 2',
description: 'Lorem ipsum dolor sit amet.',
price: 190,
photoURL: 'https://images.pexels.com/photos/1203803/pexels-photo-1203803.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260'
},
{
id: '3',
name: 'Camera model 3',
description: 'Lorem ipsum dolor sit amet.',
price: 650,
photoURL: 'https://images.pexels.com/photos/249597/pexels-photo-249597.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'
},
{
id: '4',
name: 'Camera model 4',
description: 'Lorem ipsum dolor sit amet.',
price: 350,
photoURL: 'https://images.pexels.com/photos/1091294/pexels-photo-1091294.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'
}
];
export default products;