(props)
| 9 | //this input appears when adding a new value to an object |
| 10 | export default class extends React.PureComponent { |
| 11 | constructor(props) { |
| 12 | super(props); |
| 13 | this.state = { |
| 14 | input: props.input ? props.input : '' |
| 15 | }; |
| 16 | } |
| 17 | |
| 18 | render() { |
| 19 | const { theme, rjvId, isValid } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…