(props: any)
| 3003 | class Example76 extends React.Component<any, any> { |
| 3004 | state: any; |
| 3005 | constructor(props: any) { |
| 3006 | super(props); |
| 3007 | |
| 3008 | this.toggleNavbar = this.toggleNavbar.bind(this); |
| 3009 | this.state = { |
| 3010 | collapsed: true, |
| 3011 | }; |
| 3012 | } |
| 3013 | |
| 3014 | toggleNavbar() { |
| 3015 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected