15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
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} />
|
|
</>
|
|
);
|
|
}
|