-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders.js
44 lines (44 loc) · 914 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
const Orders = [
{
productName: "Foldable Mini Drone",
productNumber: "85631",
paymentStatus: "Due",
shipping: "Pending",
},
{
productName: "LAVENDAR KF102 Drone",
productNumber: "35378",
paymentStatus: "Refunded",
shipping: "Declined",
},
{
productName: "Ruko F11 Pro Drone",
productNumber: "49347",
paymentStatus: "Due",
shipping: "Pending",
},
{
productName: "Drone with Camera Drone",
productNumber: "96996",
paymentStatus: "Paid",
shipping: "Delivered",
},
{
productName: "GPS 4K Drone",
productNumber: "22821",
paymentStatus: "Paid",
shipping: "Delivered",
},
{
productName: "DJI Air 25",
productNumber: "81475",
paymentStatus: "Due",
shipping: "Pending",
},
{
productName: "Lozenge Drone",
productNumber: "000482",
paymentStatus: "Paid",
shipping: "Delivered",
},
];