(props)
| 8 | |
| 9 | class App extends Component { |
| 10 | constructor(props) { |
| 11 | super(props); |
| 12 | this.state = { modalIsOpen: false }; |
| 13 | } |
| 14 | |
| 15 | openModal = () => { |
| 16 | this.setState({modalIsOpen: true}); |
nothing calls this directly
no outgoing calls
no test coverage detected