Skip to content

Instantly share code, notes, and snippets.

@tgrecojs
Last active March 12, 2018 21: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 tgrecojs/f6bfc761106dbe1df464bd9217ccebb8 to your computer and use it in GitHub Desktop.
Save tgrecojs/f6bfc761106dbe1df464bd9217ccebb8 to your computer and use it in GitHub Desktop.
source/Banner/component.js
const Image = ({headline, bgColor, image }) =>
<div className="banner" style={{background: bgColor}}>
<img className="bannerImage" src={`${image.url}`} alt="tg banner"/>
<h2>{headline}</h2>
</div>
export default Image;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment