-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
44 lines (43 loc) · 893 Bytes
/
api.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 api = [
{
text: "textOne",
dateTime: "2022-03-18 08:10:40.000",
},
{
text: "textTwo",
dateTime: "2022-03-18 08:10:00.000",
},
{
text: "textThree",
dateTime: "2022-03-18 12:16:00.000",
},
{
text: "textFour",
dateTime: "2022-03-18 08:11:40.000",
},
{
text: "textFive",
dateTime: "2022-03-18 08:12:00.000",
},
{
text: "textSix",
dateTime: "2022-03-18 21:14:00.000",
},
{
text: "textSeven",
dateTime: "2022-03-18 21:14:00.000",
},
{
text: "textEight",
dateTime: "2022-03-18 08:09:20.000",
},
{
text: "textNine",
dateTime: "2022-03-18 08:10:00.000",
},
{
text: "textFinal",
dateTime: "2022-03-18 08:10:40.000",
},
];
module.exports = { api };