(props, context)
| 13 | class TextModal extends React.Component { |
| 14 | |
| 15 | constructor(props, context) { |
| 16 | super(props, context) |
| 17 | this.state = { |
| 18 | showModal : false, |
| 19 | jsonPath : '', |
| 20 | inputValue: '' |
| 21 | } |
| 22 | } |
| 23 | // 获取json对象路径 |
| 24 | InspectorClick = (e) => { |
| 25 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected