From e9c266fe8f68877732a5979b0983e47723676156 Mon Sep 17 00:00:00 2001 From: Laux Dev <2201104208@student.buksu.edu.ph> Date: Tue, 24 Feb 2026 16:26:51 +0800 Subject: [PATCH] Table added in origanization --- frontend/src/app/organization/page.jsx | 124 ++++++++++++++++++ .../src/app/organization/styles.module.css | 70 ++++++++++ 2 files changed, 194 insertions(+) diff --git a/frontend/src/app/organization/page.jsx b/frontend/src/app/organization/page.jsx index 2e63a55..6a4bb1e 100644 --- a/frontend/src/app/organization/page.jsx +++ b/frontend/src/app/organization/page.jsx @@ -1,14 +1,138 @@ +"use-client"; import React from "react"; import styles from "./styles.module.css"; import TopHeader from "../components/topHeader/TopHeader"; import globalStyle from "../globalStyle.module.css"; const OrganizationPage = () => { + const sampleData = [ + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + { + organizationName: "Project Moonshot Inc.", + dateCreated: "2024-10-21 08:01:30.556 +0000 UTC", + }, + ]; + const handleRowClick = (org) => { + console.log("Row clicked:", org); + }; return (
| Organization Name | +Date Created | +Actions | +
|---|---|---|
| {org.organizationName} | +{org.dateCreated} | +
+
+
+
+ |
+