-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeleted-data.js
More file actions
56 lines (56 loc) · 984 Bytes
/
deleted-data.js
File metadata and controls
56 lines (56 loc) · 984 Bytes
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
48
49
50
51
52
53
54
55
56
const DUMMY_EXPENSES = [
{
id: "e1",
description: "Purchased groceries",
amount: 38.99,
date: new Date("2022-06-15"),
},
{
id: "e2",
description: "Clothes",
amount: 45.99,
date: new Date("2022-05-13"),
},
{
id: "e3",
description: "Gasoline",
amount: 68.99,
date: new Date("2022-05-28"),
},
{
id: "e4",
description: "A book",
amount: 9.99,
date: new Date("2022-01-12"),
},
{
id: "e5",
description: "Apples",
amount: 10.99,
date: new Date("2022-02-14"),
},
{
id: "e6",
description: "Purchased groceries",
amount: 38.99,
date: new Date("2022-06-15"),
},
{
id: "e7",
description: "Clothes",
amount: 45.99,
date: new Date("2022-05-13"),
},
{
id: "e8",
description: "Gasoline",
amount: 68.99,
date: new Date("2022-05-28"),
},
{
id: "e9",
description: "A book",
amount: 9.99,
date: new Date("2022-01-12"),
},
];