-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummy.ts
66 lines (65 loc) · 1.69 KB
/
dummy.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
import { TaskMap } from "./Types/types";
export const initialState: TaskMap = {
Pending: [
{
id: '1',
task: 'Implement feature A',
description: 'This is a description of feature A',
tag: 'High',
date: '2022-01-01',
},
{
id: '2',
task: 'Implement feature B',
description: 'This is a description of feature B',
tag: 'Low',
date: '2022-01-01',
},
{
id: '3',
task: 'Implement feature C',
description: 'This is a description of feature C',
tag: 'Medium',
date: '2022-01-01',
},
{
id: '5',
task: 'Focus on DSA',
description: 'Practice Data Structures and Algorithms problems',
tag: 'Medium',
date: '2022-01-01',
},
],
Ongoing: [
{
id: '6',
task: 'Implement feature D',
description: 'This is a description of feature D',
tag: 'High',
date: '2022-01-01',
},
{
id: '7',
task: 'Play cricket',
description: 'Evening cricket practice',
tag: 'Low',
date: '2022-01-01',
},
],
Done: [
{
id: '8',
task: 'Study for Exams',
description: 'Study for the fall semester exam',
tag: 'High',
date: '2022-01-01',
},
{
id: '4',
task: 'Exercise',
description: 'Morning workout routine',
tag: 'High',
date: '2022-01-01',
},
]
};