Skip to content

Instantly share code, notes, and snippets.

@tylermcginnis
Last active September 12, 2019 06:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save tylermcginnis/9c6da4afcee361c0923c17836c1039c4 to your computer and use it in GitHub Desktop.
Save tylermcginnis/9c6da4afcee361c0923c17836c1039c4 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>First React App</title>
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src='https://unpkg.com/babel-standalone@6/babel.min.js'></script>
</head>
<body>
<div id='app'></div>
<script type='text/babel'>
function FriendsList (props) {
return (
<ul>
{props.list.map((name) => (
<li key={name}>
{name}
</li>
))}
</ul>
)
}
function App () {
const friends = ['Jordyn', 'Mikenzi', 'Jake']
return (
<div>
<FriendsList list={friends} />
</div>
)
}
ReactDOM.render(
<App />,
document.getElementById('app')
)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment