Created
September 25, 2017 09:33
-
-
Save korof/cbad5845dfc639c1480f6796fab76206 to your computer and use it in GitHub Desktop.
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 Title = styled.h1` | |
font-size: 1.5em; | |
text-align: center; | |
color: palevioletred; | |
`; | |
const Wrapper = styled.section` | |
padding: 4em; | |
background: papayawhip; | |
`; | |
render( | |
<Wrapper> | |
<Title> | |
Hello World, this is my first styled component! | |
</Title> | |
</Wrapper> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment