What is JSX?
JSX stands for JavaScript XML. It allows writing HTML-like syntax inside JavaScript.
const element = <h1>Hello React</h1>;JSX stands for JavaScript XML. It allows writing HTML-like syntax inside JavaScript.
const element = <h1>Hello React</h1>;