JSX, or JavaScript XML, is a syntax extension that looks similar to HTML and is used to define React components. JSX makes it easier to write and understand component structure by combining HTML with JavaScript.
const element = <h1>Hello, JSX!</h1>;