| 3 | import './ShareModal.less' |
| 4 | |
| 5 | interface Props { |
| 6 | closeHTMLReverseodal: Function; |
| 7 | submitHTMLReverse: Function; |
| 8 | } |
| 9 | const HtmlReverse: React.FC<Props> = ({ closeHTMLReverseodal, submitHTMLReverse }) => { |
| 10 | const [visible, setVisible] = useState<Boolean>(true); |
| 11 | const handleCancel = () => { |
nothing calls this directly
no outgoing calls
no test coverage detected