Skip to content

Instantly share code, notes, and snippets.

@Hum4n01d
Last active July 11, 2017 18:35
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 Hum4n01d/a7a80e505269cebde4ce989dc6f98573 to your computer and use it in GitHub Desktop.
Save Hum4n01d/a7a80e505269cebde4ce989dc6f98573 to your computer and use it in GitHub Desktop.
Example component with styled-components and React
const Banner = styled.div`
margin: 10px;
background-color: papayawhip;
color: palevioletred;
padding: 20px;
text-align: center;
`
const Greet = ({name}) => (
<Banner>Hello {name}!</Banner>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment