Render
This method execute when update state, props
Eg:
class Parent extends React.Component{
constructor(){
super();
this.state={
name:"xyz"
}
}
render(){
return <>
<h1>Hello World {this.state.name}</h1>
</>
}
}
export default App;
© www.thecoderjob.com. All Rights Reserved. Designed by HTML Codex