(props)
| 7 | |
| 8 | module.exports = class extends React.Component { |
| 9 | constructor (props) { |
| 10 | super(props); |
| 11 | this.state = { |
| 12 | filterText: '' |
| 13 | }; |
| 14 | } |
| 15 | |
| 16 | render () { |
| 17 | let options = [{ |
nothing calls this directly
no outgoing calls
no test coverage detected