-
Notifications
You must be signed in to change notification settings - Fork 0
/
orders.js
47 lines (44 loc) · 922 Bytes
/
orders.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const Orders = [
{
productName: 'Foldable Mini Drone',
productNumber: '85372',
paymentStatus: 'Due',
shipping: 'Pending'
},
{
productName: 'GPS 4k Drone',
productNumber: '78230',
paymentStatus: 'Due',
shipping: 'Declined'
},
{
productName: 'MX master 3',
productNumber: '23786',
paymentStatus: 'Due',
shipping: 'Delivered'
},
{
productName: 'Ruko F11 Drone',
productNumber: '23473',
paymentStatus: 'Due',
shipping: 'Pending'
},
{
productName: 'LARVENDER KF102 Drone',
productNumber: '98747',
paymentStatus: 'Due',
shipping: 'Delivered'
},
{
productName: 'Lozenge Drone',
productNumber: '34658',
paymentStatus: 'Due',
shipping: 'Pending'
},
{
productName: 'DJI Air 25',
productNumber: '85019',
paymentStatus: 'Due',
shipping: 'Delivered'
}
]