(props)
| 8 | |
| 9 | class FetchGroup extends React.Component { |
| 10 | constructor (props) { |
| 11 | super(props); |
| 12 | |
| 13 | this.state = { |
| 14 | fetch: props.value |
| 15 | }; |
| 16 | } |
| 17 | |
| 18 | handleChange (key, value) { |
| 19 | if (key === 'data' && value) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…