()
| 46 | }; |
| 47 | |
| 48 | export function useModal() { |
| 49 | return React.useContext(ModalContext); |
| 50 | } |
| 51 | |
| 52 | export function AlertContent({ text, confirm, okLabel = gettext('OK'), cancelLabel = gettext('Cancel'), onOkClick, onCancelClick, okIcon = 'default', plainText = false}) { |
| 53 | const body = (typeof text === 'string') |
no outgoing calls
no test coverage detected