Last active
July 11, 2018 20:39
-
-
Save wwwhatley/8ac35c7d37b99a5e7aeedbe63f54552b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import React, {Component} from 'react'; | |
import styled from 'styled-components'; | |
const Title = styled.h1` | |
font-family: 'Raleway', sans-serif; | |
font-weight: 600; | |
color: #4d4d4d; | |
font-size: 2.2em; | |
`; | |
class App extends Component { | |
render() { | |
return ( | |
<div> | |
<Title>Hi! I'm a styled h1!</Title> | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment