Created
May 13, 2019 14:07
-
-
Save bee-san/3ef3ca7d63bc7c6bf0ef898ca0b846a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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