JSX (Power House of React-Native)
JSX is nothing but a Javascript extensible language.
It is used for React js and React native.
We can't write JSX code in java script code.
const myElement = <h1>I Love JSX!</h1>; const root = ReactDOM.createRoot(document.getElementById('root')); root.render(myElement);