creating a class with functions in react code example

Example 1: react native function

class Foo extends Component {
  handleClick() {
    console.log('Click happened');
  }
  render() {
    return <button onClick={this.handleClick.bind(this)}>Click Me</button>;
  }
}

Example 2: how to use a js class in react

class Developer {  constructor(firstname, lastname) {    this.firstname = firstname;    this.lastname = lastname;  }   getName() {    return this.firstname + ' ' + this.lastname;  }} class ReactDeveloper extends Developer {  getJob() {    return 'React Developer';  }} var me = new ReactDeveloper('Robin', 'Wieruch'); console.log(me.getName());console.log(me.getJob());