deepsourcestatus / test-repository

Found unused expressions JS-0093
Bug risk
Minor
8 months ago8 months old
27  }
28
29  render() {
30    <div class={this.props.class_name}>{this.props.title}</div>;31  }
32}
33
 3
 4class Footer extends Component {
 5  render() {
 6    <> 7      <div class={this.props.class_name}> 8        {this.props.text} 9      </div>10    </>11  }
12}
13
 7  }
 8
 9  render() {
10    <div onClick={() => this.handleClick.bind(this)} class={this.props.class_name}>{this.props.title}</div>;11  }
12}
13
 7  }
 8
 9  render() {
10    <div onClick={() => this.handleClick.bind(this)} class={this.props.class_name}>11      Welcome to {this.props.title} TestingComponent Component12    </div>13  }
14}
15