(props)
| 3 | |
| 4 | class Item extends Component { |
| 5 | constructor(props) { |
| 6 | super(props); |
| 7 | this.state = { |
| 8 | isOpen: false |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | toggleModal = index => event => { |
| 13 | console.log("NESTED MODAL ITEM", event); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…