| 2 | import Modal from "./kit/Modal"; |
| 3 | |
| 4 | export interface ActionConfirmModalProps { |
| 5 | title: string; |
| 6 | content: string; |
| 7 | confirmButtonStyle: string; |
| 8 | close: () => void; |
| 9 | confirm: () => void; |
| 10 | } |
| 11 | |
| 12 | const ActionConfirmModal = (props: ActionConfirmModalProps) => { |
| 13 | const { close, confirm, title, content, confirmButtonStyle } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected