Last active
February 17, 2018 22:53
-
-
Save aerrity/ba5086c39775f8b0920e7db971611d9c to your computer and use it in GitHub Desktop.
React example - Using the map iterator to render lists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
class Listy extends React.Component { | |
render() { | |
const users = ['John','Jill','Joan','Jenny']; | |
// // the map iterator below is identical to this for loop | |
// const list = []; | |
// for(let i = 0; i < users.length; i++) { | |
// list.push(<li>{users[i]}</li>); | |
// } | |
const list = users.map(u => { | |
return <li>{u}</li>; | |
}); | |
return ( | |
<ul> | |
{list} | |
</ul> | |
); | |
} | |
} | |
ReactDOM.render( | |
<Listy />, | |
document.getElementById('root') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment