JSX (Power House of React-Native)

  1. JSX is nothing but a Javascript extensible language.

  2. It is used for React js and React native.

  3. We can't write JSX code in java script code.

  4.  const myElement = <h1>I Love JSX!</h1>;
    
     const root = ReactDOM.createRoot(document.getElementById('root'));
     root.render(myElement);