Nesting JSX
Nesting Jsx
👨💼 Remember when we created this with 
createElement?<div class="container">
	<p>Here's Sam's favorite food:</p>
	<ul class="sams-food">
		<li>Green eggs</li>
		<li>Ham</li>
	</ul>
</div>
That was... intellectually stimulating 😅. Well, now try doing the same thing
using JSX. I promise it'll be more fun this time.
💰 Tip: remember 
class in JSX is className.