Skip to content

Latest commit

 

History

History

04.problem.nesting

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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`.