-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
49 lines (45 loc) · 2.09 KB
/
Copy pathdata.js
File metadata and controls
49 lines (45 loc) · 2.09 KB
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
const initialTasks = [
{
id: 1, // unique identifier
title: "Go to gym", // task name
priority: "High", // could be "High", "Medium", "Low"
status: "To Do", // task status: "To Do", "In Progress", "Done"
completed: false // whether the task is finished
},
{
id: 2, // unique identifier
title: "Read a book", // task name
priority: "Low", // could be "High", "Medium", "Low"
status: "Done", // task status: "To Do", "In Progress", "Done"
completed: true // whether the task is finished
},
{
id: 3, // unique identifier
title: "Go to market", // task name
priority: "Medium", // could be "High", "Medium", "Low"
status: "In Progress", // task status: "To Do", "In Progress", "Done"
completed: false // whether the task is finished
},
{
id: 4, // unique identifier
title: "Restart Learning Solidworks", // task name
priority: "High", // could be "High", "Medium", "Low"
status: "To Do", // task status: "To Do", "In Progress", "Done"
completed: false // whether the task is finished
},
{
id: 5, // unique identifier
title: "change slider to scroll", // task name
priority: "High", // could be "High", "Medium", "Low"
status: "Done", // task status: "To Do", "In Progress", "Done"
completed: true // whether the task is finished
},
{
id: 6, // unique identifier
title: "To publish the article", // task name
priority: "Medium", // could be "High", "Medium", "Low"
status: "In Progress", // task status: "To Do", "In Progress", "Done"
completed: false // whether the task is finished
},
]
export default initialTasks