--- title: Create a Simple JSX Element --- # Create a Simple JSX Element --- ## Solutions
Solution 1 (Click to Show/Hide) This challenge is fairly simple, replace the div in the JSX element with h1 ```jsx const JSX=

; ``` Then add the required text. ```jsx const JSX =

Hello JSX!

; ```