"use client"; import { Paper, Stack, Center, Title, Table, Group, Avatar, } from "@mantine/core"; import _ from "lodash"; import moment from "moment"; export default function TablePublikasiProgresInvestasi({ publishProgres, }: { publishProgres: any[]; }) { return ( <>
Publikasi & Progres Investasi
{_.isEmpty(publishProgres) ? [] : publishProgres.map((e) => ( ))}
Username
Publis
Progres
{" "} {e.author.username}
{moment(e.updatedAt).format("DD MMM YYYY")}{" "}
{e.progress} %
); }