(props)
| 5 | |
| 6 | class VerticalExample extends Component<any, any> { |
| 7 | constructor(props) { |
| 8 | super(props); |
| 9 | this.state = { |
| 10 | isFlipped: false |
| 11 | }; |
| 12 | this.handleClick = this.handleClick.bind(this); |
| 13 | } |
| 14 | |
| 15 | handleClick(event) { |
| 16 | event.preventDefault(); |
nothing calls this directly
no outgoing calls
no test coverage detected