generated from atinux/atidone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ts
79 lines (79 loc) · 1.42 KB
/
data.ts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export const todos = [
{
id: 1,
userId: 1,
title: 'delectus aut autem',
completed: 0,
createdAt: 1633500000000
},
{
id: 2,
userId: 1,
title: 'quis ut nam facilis et officia qui',
completed: 0,
createdAt: 1633500000000
},
{
id: 3,
userId: 1,
title: 'fugiat veniam minus',
completed: 0,
createdAt: 1633500000000
},
{
id: 4,
userId: 1,
title: 'et porro tempora',
completed: 1,
createdAt: 1633500000000
},
{
id: 5,
userId: 1,
title: 'laboriosam mollitia et enim quasi adipisci quia provident illum',
completed: 0,
createdAt: 1633500000000
},
{
id: 6,
userId: 1,
title: 'qui ullam ratione quibusdam voluptatem quia omnis',
completed: 0,
createdAt: 1633500000000
},
{
id: 7,
userId: 1,
title: 'illo expedita consequatur quia in',
completed: 0,
createdAt: 1633500000000
},
{
id: 8,
userId: 1,
title: 'quo adipisci enim quam ut ab',
completed: 1,
createdAt: 1633500000000
},
{
id: 9,
userId: 1,
title: 'molestiae perspiciatis ipsa',
completed: 0,
createdAt: 1633500000000
},
{
id: 10,
userId: 1,
title: 'illo est ratione doloremque quia maiores aut',
completed: 1,
createdAt: 1633500000000
},
{
id: 11,
userId: 1,
title: 'vero rerum temporibus dolor',
completed: 1,
createdAt: 1633500000000
}
];