JSX is a syntax that gets compiled into valid JavaScript. Sometimes, for readability, you might need to add comments to your code. Like most programming languages, JSX has its own way to do this.
To put comments inside JSX, you use the syntax <code>{/* */}</code> to wrap around the comment text.
</section>
## Instructions
<sectionid='instructions'>
The code editor has a JSX element similar to what you created in the last challenge. Add a comment somewhere within the provided <code>div</code> element, without modifying the existing <code>h1</code> or <code>p</code> elements.
- text: The constant <code>JSX</code> should return a <code>div</code> element.
testString: 'assert(JSX.type === ''div'', ''The constant <code>JSX</code> should return a <code>div</code> element.'');'
- text: The <code>div</code> should contain an <code>h1</code> tag as the first element.
testString: 'assert(JSX.props.children[0].type === ''h1'', ''The <code>div</code> should contain an <code>h1</code> tag as the first element.'');'
- text: The <code>div</code> should contain a <code>p</code> tag as the second element.
testString: 'assert(JSX.props.children[1].type === ''p'', ''The <code>div</code> should contain a <code>p</code> tag as the second element.'');'
- text: The <code>JSX</code> should include a comment.
testString: 'getUserInput => assert(getUserInput(''index'').includes(''/*'') && getUserInput(''index'').includes(''*/''), ''The <code>JSX</code> should include a comment.'');'