Skip to content

Commit 610396a

Browse files
Reversed previous action
1 parent 0e9e8c1 commit 610396a

File tree

1 file changed

+36
-37
lines changed

1 file changed

+36
-37
lines changed

web/src/App.jsx

+36-37
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
1-
import { useState } from 'react';
21
import TaskList from './components/domains/task/TaskList/TaskList';
32

43
function App() {
5-
const [TaskListInfo, setTaskListInfo] = useState([
6-
{
7-
id: 'T1',
8-
ProjectTask: 'Rework UI/UX',
9-
ProjectStatus: 'Low',
10-
date: '12/05/2025',
11-
participants: ['Said', ' Rachel'],
12-
project: 'Timer App',
13-
},
14-
{
15-
id: 'T2',
16-
ProjectTask: 'Dark Mode Toggle',
17-
ProjectStatus: 'High',
18-
date: '09/03/2025',
19-
participants: ['Umair', ' Precious'],
20-
project: 'ASA DarkMode Feature',
21-
},
22-
{
23-
id: 'T3',
24-
ProjectTask: 'Accessibility Checks',
25-
ProjectStatus: 'Medium',
26-
date: '15/04/2025',
27-
participants: ['Micheal', ' Ricardo'],
28-
project: 'Timer App',
29-
},
30-
{
31-
id: 'T4',
32-
ProjectTask: 'Notification Integration',
33-
ProjectStatus: 'High',
34-
date: '11/03/2025',
35-
participants: ['Ebetsam', ' Deborah'],
36-
project: 'Timer App',
37-
},
38-
]);
39-
404
return (
415
<>
42-
<TaskList></TaskList>
6+
<TaskList
7+
TaskListInfo={[
8+
{
9+
id: 'T1',
10+
ProjectTask: 'Rework UI/UX',
11+
ProjectStatus: 'Low',
12+
date: '12/05/2025',
13+
participants: ['Said', ' Rachel'],
14+
project: 'Timer App',
15+
},
16+
{
17+
id: 'T2',
18+
ProjectTask: 'Dark Mode Toggle',
19+
ProjectStatus: 'High',
20+
date: '09/03/2025',
21+
participants: ['Umair', ' Precious'],
22+
project: 'ASA DarkMode Feature',
23+
},
24+
{
25+
id: 'T3',
26+
ProjectTask: 'Accessibility Checks',
27+
ProjectStatus: 'Medium',
28+
date: '15/04/2025',
29+
participants: ['Micheal', ' Ricardo'],
30+
project: 'Timer App',
31+
},
32+
{
33+
id: 'T4',
34+
ProjectTask: 'Notification Integration',
35+
ProjectStatus: 'High',
36+
date: '11/03/2025',
37+
participants: ['Ebetsam', ' Deborah'],
38+
project: 'Timer App',
39+
},
40+
]}
41+
></TaskList>
4342
</>
4443
);
4544
}

0 commit comments

Comments
 (0)