import { DataTable } from "~/components/table/data-table"; import { columns } from "./table/columns"; import Spinner from "~/components/ui/spinner"; import { useGethistoryProjectById } from "~/services/project-wallet/get-by-id"; interface SecondSectionProps { id: string | number; } export default function SecondSection({ id }: SecondSectionProps) { const { data, isLoading } = useGethistoryProjectById({ id, isDashboard: false, }); return (

Riwayat Transfer

{isLoading ? (
) : ( )}
); }