Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created April 14, 2020 14:57
Show Gist options
  • Save jsmanifest/64ef740e64b25e234e6fed2e29723538 to your computer and use it in GitHub Desktop.
Save jsmanifest/64ef740e64b25e234e6fed2e29723538 to your computer and use it in GitHub Desktop.
function List(props) {
return <div>{props.children}</div>
}
function App() {
return (
<List>
<h5>
Group: <em>Pediatricians</em>
</h5>
<ul>
<p>Members</p>
<li>Michael Lopez</li>
<li>Sally Tran</li>
<li>Brian Lu</li>
<li>Troy Sakulbulwanthana</li>
<li>Lisa Wellington</li>
</ul>
</List>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment