koperasi/services/frontend/app/routes/dashboard.saldo.penarikan/components/table/cell-action.tsx

15 lines
306 B
TypeScript
Raw Permalink Normal View History

2025-08-08 07:12:40 +00:00
import type { TopUpResponse } from "~/types/api/top-up";
import DetailPenarikanModal from "../modal/detail-penarikan";
interface CellActionProps {
data: TopUpResponse;
}
export function CellAction({ data }: CellActionProps) {
return (
<>
<DetailPenarikanModal data={data} />
</>
);
}