Guest User

Untitled

a guest
Sep 22nd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const App = () => (
  2. <List
  3. render={
  4. ({items}) => (
  5. <ul>
  6. {items.map(item => {
  7. <li key={item.id}>{item.name}</li>
  8. })}
  9. </ul>
  10. )
  11. }/>
  12. )
Add Comment
Please, Sign In to add comment