Select the correct JSX code snippets from those listed below.
A)
const element = (
<ul>
<li>JavaScript</li>
<li>TypeScript</li>
</ul>
)
B)
const element = <input type="text" >
C)
const element = (
<p>Paragraph 1</p>
<p>Paragraph 2</p>
)
D)
const element = <p>1 + 2 = {1 + 2}</p>