Last active
July 11, 2017 18:35
-
-
Save Hum4n01d/a7a80e505269cebde4ce989dc6f98573 to your computer and use it in GitHub Desktop.
Example component with styled-components and React
This file contains 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
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