Skip to content

Instantly share code, notes, and snippets.

@bee-san
Created May 13, 2019 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bee-san/3ef3ca7d63bc7c6bf0ef898ca0b846a0 to your computer and use it in GitHub Desktop.
Save bee-san/3ef3ca7d63bc7c6bf0ef898ca0b846a0 to your computer and use it in GitHub Desktop.
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