(props)
| 3 | |
| 4 | export default class MenuDemo extends React.Component { |
| 5 | constructor(props){ |
| 6 | super(props); |
| 7 | this.state = { |
| 8 | index: "1", |
| 9 | }; |
| 10 | } |
| 11 | displayChange(index){ |
| 12 | this.setState({ |
| 13 | index: index |
nothing calls this directly
no outgoing calls
no test coverage detected