React Class Component

FatimaAlam1234 - Apr 23 - - Dev Community
import React from "react";

class App extends React.Component{
constructor(){
super();
this.state = {
};
};
render(){
return(
<>
<h1>Hello World</h1>
<h1>Hi</h1>
</>
);
};
};

export default App;
Enter fullscreen mode Exit fullscreen mode

Points to remember:

  1. constructor is a function so syntax -> constructor(){}. Same for render(){}. And all other lifeCycle methods are called the similarly.
  2. render should return() something which is JSX.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .