15 lines
358 B
TypeScript
15 lines
358 B
TypeScript
import type { PemilikPelaksanaResponse } from "~/types/api/pemilik-pelaksana";
|
|
import DetailTransferManajamenPemilik from "../modal/detail-transfer";
|
|
|
|
interface CellActionProps {
|
|
data: PemilikPelaksanaResponse;
|
|
}
|
|
|
|
export function CellAction({ data }: CellActionProps) {
|
|
return (
|
|
<>
|
|
<DetailTransferManajamenPemilik data={data} />
|
|
</>
|
|
);
|
|
}
|