Skip to content

Instantly share code, notes, and snippets.

@Jaikant
Created August 9, 2018 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jaikant/b9b62c99468fbc3fba910c2f469d8ef9 to your computer and use it in GitHub Desktop.
Save Jaikant/b9b62c99468fbc3fba910c2f469d8ef9 to your computer and use it in GitHub Desktop.
React Simple Functional Components
<!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 FriendList(props) {
return (
<ul>
{props.list.map((friend) => (
<li key={friend}>
{friend}
</li>
))}
</ul>
)
}
function App () {
const friends = ['Max', 'Sid', 'Aman']
return (
<div>
Hello friends!
<FriendList 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