Last active
April 17, 2017 15:11
-
-
Save lvarayut/2ba8af0e8403d22e7eafc2b50655ea63 to your computer and use it in GitHub Desktop.
Step-1 Create Title component
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` | |
color: goldenrod; | |
`; | |
class App extends Component { | |
render() { | |
return ( | |
<Title>Mystagram</Title> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment