Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//fb.me/react-0.14.3.js"></script>
<script src="//fb.me/react-dom-0.14.3.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="container"></div>
</body>
</html>
 
class SomeComponent extends React.Component {
  constructor(){
    super();
    
    this.state = { posts: [] };
  }
  
  loadPosts() {
    fetch('https://jsonplaceholder.typicode.com/posts')
      .then(response => response.json())
      .then(posts => {
        this.setState({ posts: posts })
      })
  } 
  
  renderPosts() {
    return this.state.posts.map(post => {
      const { id, title, body } = post;
      return (
        <div key={id}>
          <h5>{title}</h5>
          <p>{body}</p>
        </div>
      )
    })
  }
  
  render() {
    return (
    <div>
      <h2>My posts</h2>
      <ul>
       {this.renderPosts()}
      </ul>
      <button onClick={() => this.loadPosts()}>Load post</button>
    </div>
    );
  }
}
ReactDOM.render(
  <SomeComponent />,
  document.getElementById('container')
);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers