"use client"; import { RouterAdminEvent } from "@/app/lib/router_admin/router_admin_event"; import { Stack, Title, Divider, SimpleGrid, Paper, Center, Text, Box, Group, ActionIcon, } from "@mantine/core"; import { IconChevronsRight } from "@tabler/icons-react"; import { useRouter } from "next/navigation"; import ComponentAdminGlobal_HeaderTamplate from "../../component/header_tamplate"; export default function AdminEvent_Main({ countPublish, countReview, countDraft, countReject, countTipeAcara, countRiwayat, }: { countPublish: number; countReview: number; countDraft: number; countReject: number; countTipeAcara: number; countRiwayat: number }) { const router = useRouter(); const listStatus = [ { id: 1, name: "Publish", jumlah: countPublish, path: RouterAdminEvent.table_publish, color: "green", }, { id: 2, name: "Review", jumlah: countReview, path: RouterAdminEvent.table_review, color: "orange", }, { id: 3, name: "Draft", jumlah: countDraft, path: "", color: "yellow", }, { id: 4, name: "Reject", jumlah: countReject, path: RouterAdminEvent.table_reject, color: "red", }, ]; const listBox2 = [ { id: 1, name: "Riwayat Event", jumlah: countRiwayat, path: RouterAdminEvent.table_publish, color: "gray", }, { id: 2, name: "Tipe Acara", jumlah: countTipeAcara, path: RouterAdminEvent.table_publish, color: "gray", }, ]; return ( <> {listStatus.map((e, i) => ( {e.name} {e.jumlah} ))} {listBox2.map((e, i) => ( {e.name} {e.jumlah} ))} ); }