class App extends Component {
  constructor() {
    super();
    this.state = {
      counter: 0
    };
  }
  a() {}
  b = () => {}
  render() {
    const c = () => {}
    return ( 
      <Text>Hello World!</Text>
    )
  }
}
Can anybody help me in this. That what is difference between these a,b,c functions and can I access all these from some other class using reference. How can I access it from another class. I searched lot on online but did not received proper answer. \Thanks in advancer
 
    