Skip to content

Instantly share code, notes, and snippets.

@wwwhatley
Last active July 11, 2018 20:39
Show Gist options
  • Save wwwhatley/8ac35c7d37b99a5e7aeedbe63f54552b to your computer and use it in GitHub Desktop.
Save wwwhatley/8ac35c7d37b99a5e7aeedbe63f54552b to your computer and use it in GitHub Desktop.
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