how to writ e class name in jsx

 const myElement = <h1 className="myclass">Hello World</h1>;


it is rendered as like below

<h1 class="myclass">Hello World</h1>




No comments:

Post a Comment

Event listening in react

 How we can listen to som eevents some envents fire like click or automatically user enters into input button , that is event on word type i...