(props)
| 9 | |
| 10 | class SimpleUsage extends Component { |
| 11 | constructor(props) { |
| 12 | super(props); |
| 13 | this.state = { |
| 14 | title1: DEFAULT_TITLE, |
| 15 | currentModal: null |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | toggleModal = key => event => { |
| 20 | event.preventDefault(); |
nothing calls this directly
no outgoing calls
no test coverage detected