import { Box, HStack, // Image, Input, Text } from "@chakra-ui/react"; import MainFrame from "../../components/MainFrame"; import { InputGroup } from "../../components/ui/input-group"; import { LuSearch } from "react-icons/lu"; import DataTable from "../../components/DataTable"; // import AlertDailog from "../../components/AlertDailog"; // import { RiDeleteBin5Line } from "react-icons/ri"; import ViewManageGroup from "./ViewManageGroup"; import EditDetailGroups from "./EditDetailGroup"; import AddGroup from "./AddGroup"; // import Delete from "../../components/ActionIcons/Delete"; // import ViewSubAdmin from "./ViewSubAdmin" // table data const tableHeadRow = [ "Sr. No", "Group Name", "Description", "Date", "Group type", "Action", ]; const managepost: any[] = [ ...Array.from({ length: 12 }, (_, i) => ({ "Sr. No": i + 1, "Group Name": "ABC", Description: "Lorem ipsum", Date: "12/01/1987", "Group type": "Private", Action: ( {/* } alertText="Delete Users" alertIcon={} alertCaption="are you sure you want to delete ?" onConfirm={() => { console.log("User deleted:", i + 1); }} /> */} ), })), ]; const ManageGroups = () => { return ( Manage Groups } color={"#000"} > {/* */} {" "} ); }; export default ManageGroups;