Skip to content

Instantly share code, notes, and snippets.

@ljaxferrand
Last active November 13, 2021 21:17
Show Gist options
  • Save ljaxferrand/f9ab7c1d4e6aea16e38673d3932413ed to your computer and use it in GitHub Desktop.
Save ljaxferrand/f9ab7c1d4e6aea16e38673d3932413ed to your computer and use it in GitHub Desktop.
Fresh Movie?
<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