-
Notifications
You must be signed in to change notification settings - Fork 0
/
orders.js
45 lines (44 loc) · 951 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
const orders = [
{
productName:"Item #1",
productNumber:"83945",
paymentStatus:"Due",
shipping:"Pending"
},
{
productName:"Item #2",
productNumber:"253123",
paymentStatus:"Due",
shipping:"Pending"
},
{
productName:"Item #3",
productNumber:"734573",
paymentStatus:"Paid",
shipping:"Shipped"
},
{
productName:"Item #4",
productNumber:"193748",
paymentStatus:"Due",
shipping:"Pending"
},
{
productName:"Item #5",
productNumber:"019827",
paymentStatus:"Paid",
shipping:"Pending"
},
{
productName:"Item #6",
productNumber:"938476",
paymentStatus:"Paid",
shipping:"Delivered"
},
{
productName:"Item #7",
productNumber:"193381",
paymentStatus:"Due",
shipping:"Pending"
},
]