(props)
| 16 | |
| 17 | class MultipleModals extends Component { |
| 18 | constructor(props) { |
| 19 | super(props); |
| 20 | this.state = { |
| 21 | listItemsIsOpen: false, |
| 22 | currentItem: -1, |
| 23 | loading: false, |
| 24 | items: [] |
| 25 | }; |
| 26 | } |
| 27 | |
| 28 | toggleModal = event => { |
| 29 | event.preventDefault(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…