- {name}
+
+
+ {icon}
+ {name}
+
+
+
+ {contentList.length === 0 ? (
+
No tasks
+ ) : (
+ contentList.map((item, index) => (
+
+
+
+
+ ))
+ )}
-
Content goes here
);
}
function Eisenhower() {
+ const contentList_ui = [
+ { text: "Complete report for the meeting", checked: true },
+ { text: "Review project proposal", checked: false },
+ { text: "Submit expense report", checked: false },
+ { text: "Complete report for the meeting", checked: true },
+ { text: "Review project proposal", checked: false },
+ { text: "Submit expense report", checked: false },
+ { text: "Complete report for the meeting", checked: true },
+ { text: "Review project proposal", checked: false },
+ { text: "Submit expense report", checked: false },
+ ];
+
+ const contentList_uni = [];
+ const contentList_nui = [];
+ const contentList_nuni = [];
+
return (
-
-
The Eisenhower Matrix
+
-
-
-
-
+ } contentList={contentList_ui} />
+ } contentList={contentList_uni} />
+ }
+ contentList={contentList_nui}
+ />
+ }
+ contentList={contentList_nuni}
+ />
);
diff --git a/frontend/src/components/profilePage.jsx b/frontend/src/components/profilePage.jsx
index 2f00049..4b0d0b4 100644
--- a/frontend/src/components/profilePage.jsx
+++ b/frontend/src/components/profilePage.jsx
@@ -4,7 +4,7 @@ import ProfileUpdateComponent from "./ProfileUpdateComponent";
function ProfileUpdatePage() {
return (