How can you set state initially (within the constructor() method)?
constructor() { super(); this.state = { name: "Vikas" }; }

https://www.interviewquestionspdf.com/2017/01/how-can-you-set-state-initially-within.html
constructor() {
super();
this.state = { name: "Vikas" };
}
super();
this.state = { name: "Vikas" };
}