Skip to content

Latest commit

 

History

History

03.problem.deep-nesting

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Deep Nesting Elements

👨‍💼 Just to make sure we really understand how to nest this stuff. Try to create this using React's APIs:

<div class="container">
	<p>Here's Sam's favorite food:</p>
	<ul class="sams-food">
		<li>Green eggs</li>
		<li>Ham</li>
	</ul>
</div>