Guest User

Untitled

a guest
Mar 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. render() {
  2. return (
  3. <div>
  4. {this.state.posts.map(function(item, i) {
  5. return (
  6. <li key={item.guid}>
  7. <time className="MediumPost-time">{item.pubDate}</time>
  8. </li>
  9. )
  10. })}
  11. </div>
  12. )
  13. }
Add Comment
Please, Sign In to add comment