Skip to content

Instantly share code, notes, and snippets.

@bee-san
Created May 13, 2019 14:07
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
render() {
return (
<div className="container mt-5">
<div className="row">
<div className="col-md-4">
<div className="card-deck">
{this.state.books.map(movie => <MovieCard {...movie.fields} /> )}
</div>
</div>
</div>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment