Skip to content

Instantly share code, notes, and snippets.

@aerrity
Last active February 17, 2018 22:54
Show Gist options
  • Save aerrity/c401d1e3ab49cb1126a3041779706d91 to your computer and use it in GitHub Desktop.
Save aerrity/c401d1e3ab49cb1126a3041779706d91 to your computer and use it in GitHub Desktop.
React example - Using the map iterator to render lists (with keys)
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