Last active
February 17, 2018 22:54
-
-
Save aerrity/c401d1e3ab49cb1126a3041779706d91 to your computer and use it in GitHub Desktop.
React example - Using the map iterator to render lists (with keys)
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 key={i}>{users[i]}</li>); | |
// } | |
const list = users.map( (u,i) => { | |
return <li key={i}>{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