Skip to content

Instantly share code, notes, and snippets.

@korof
Created September 25, 2017 09:33
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 korof/cbad5845dfc639c1480f6796fab76206 to your computer and use it in GitHub Desktop.
Save korof/cbad5845dfc639c1480f6796fab76206 to your computer and use it in GitHub Desktop.
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