Skip to content

Instantly share code, notes, and snippets.

@hpjaj
Created November 14, 2018 17:41
Show Gist options
  • Save hpjaj/9d7306656460d8aafc64c125a508a00a to your computer and use it in GitHub Desktop.
Save hpjaj/9d7306656460d8aafc64c125a508a00a to your computer and use it in GitHub Desktop.
// app/javascript/components/Posts.js
...
class Posts extends React.Component {
state = {
posts: []
};
componentDidMount() {
axios
.get('/api/posts')
.then(response => {
this.setState({ posts: response.data.posts });
})
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment