(props, context)
| 8 | class CodeModal extends React.Component { |
| 9 | |
| 10 | constructor(props, context) { |
| 11 | super(props, context) |
| 12 | this.state = { show: false, code: JSON.stringify(props.params, null, 2) } |
| 13 | } |
| 14 | |
| 15 | onClose = () => { |
| 16 | this.setState({ show: false }) |
nothing calls this directly
no outgoing calls
no test coverage detected