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