Last active
November 13, 2021 21:17
-
-
Save ljaxferrand/f9ab7c1d4e6aea16e38673d3932413ed to your computer and use it in GitHub Desktop.
Fresh Movie?
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
<span className="rating"> | |
{movieObj.vote_average > 5 ? ( | |
<img className="thumbs" src={thumbsUp} alt="Thumbs up for this movie."/> | |
) : ( | |
<img className="thumbs" src={thumbsDown} alt="Thumbs down for this movie"/> | |
)} | |
{movieObj.vote_average * 10 + "%"} | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment