import { Button } from '@imphnen-frontend-service/ui/atoms'; import { Modal } from '@imphnen-frontend-service/ui/molecules'; interface IModalDeleteItem { isOpen: boolean; onClose: () => void; handleDeleteItem?: () => void; } const ModalDeleteItem = ({ isOpen, onClose, handleDeleteItem, }: IModalDeleteItem) => { return ( Delete item?

Delete Item

Apakah kamu yakin untuk menghapus item ini?

); }; export default ModalDeleteItem;