Last active
November 9, 2022 17:40
-
-
Save BetterProgramming/0387c9462f349e639333d4d54ac8631d 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; | |
`; | |
// Create a Wrapper component that'll render a <section> tag with some styles | |
const Wrapper = styled.section` | |
padding: 4em; | |
background: papayawhip; | |
`; | |
// Use Title and Wrapper like any other React component – except they're styled! | |
render( | |
<Wrapper> | |
<Title> | |
Hello World! | |
</Title> | |
</Wrapper> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment