Skip to content

Instantly share code, notes, and snippets.

@lvarayut
Last active April 17, 2017 15:11
Show Gist options
  • Save lvarayut/2ba8af0e8403d22e7eafc2b50655ea63 to your computer and use it in GitHub Desktop.
Save lvarayut/2ba8af0e8403d22e7eafc2b50655ea63 to your computer and use it in GitHub Desktop.
Step-1 Create Title component
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