showing results for - "product"
Melina
21 Nov 2016
1const products = [
2  {
3    '_id': '1',
4    'name': 'Airpods Wireless Bluetooth Headphones',
5    'image': '/images/airpods.jpg',
6    'description':
7      'Bluetooth technology lets you connect it with compatible devices wirelessly High-quality AAC audio offers immersive listening experience Built-in microphone allows you to take calls while working',
8    'brand': 'Apple',
9    'category': 'Electronics',
10    'price': 89.99,
11    'countInStock': 10,
12    'rating': 4.5,
13    'numReviews': 12,
14  },
15  {
16    '_id': '2',
17    'name': 'iPhone 11 Pro 256GB Memory',
18    'image': '/images/phone.jpg',
19    'description':
20      'Introducing the iPhone 11 Pro. A transformative triple-camera system that adds tons of capability without complexity. An unprecedented leap in battery life',
21    'brand': 'Apple',
22    'category': 'Electronics',
23    'price': 599.99,
24    'countInStock': 0,
25    'rating': 4.0,
26    'numReviews': 8,
27  },
28  {
29    '_id': '3',
30    'name': 'Cannon EOS 80D DSLR Camera',
31    'image': '/images/camera.jpg',
32    'description':
33      'Characterized by versatile imaging specs, the Canon EOS 80D further clarifies itself using a pair of robust focusing systems and an intuitive design',
34    'brand': 'Cannon',
35    'category': 'Electronics',
36    'price': 929.99,
37    'countInStock': 5,
38    'rating': 3,
39    'numReviews': 12,
40  },
41  {
42    '_id': '4',
43    'name': 'Sony Playstation 4 Pro White Version',
44    'image': '/images/playstation.jpg',
45    'description':
46      'The ultimate home entertainment center starts with PlayStation. Whether you are into gaming, HD movies, television, music',
47    'brand': 'Sony',
48    'category': 'Electronics',
49    'price': 399.99,
50    'countInStock': 11,
51    'rating': 5,
52    'numReviews': 12,
53  },
54  {
55    '_id': '5',
56    'name': 'Logitech G-Series Gaming Mouse',
57    'image': '/images/mouse.jpg',
58    'description':
59      'Get a better handle on your games with this Logitech LIGHTSYNC gaming mouse. The six programmable buttons allow customization for a smooth playing experience',
60    'brand': 'Logitech',
61    'category': 'Electronics',
62    'price': 49.99,
63    'countInStock': 7,
64    'rating': 3.5,
65    'numReviews': 10,
66  },
67  {
68    '_id': '6',
69    'name': 'Amazon Echo Dot 3rd Generation',
70    'image': '/images/alexa.jpg',
71    'description':
72      'Meet Echo Dot - Our most popular smart speaker with a fabric design. It is our most compact smart speaker that fits perfectly into small space',
73    'brand': 'Amazon',
74    'category': 'Electronics',
75    'price': 29.99,
76    'countInStock': 0,
77    'rating': 4,
78    'numReviews': 12,
79  },
80]
81
82
83export default products
84
similar questions
queries leading to this page
product