Skip to content

Instantly share code, notes, and snippets.

@lvarayut
Last active April 17, 2017 15:11
Show Gist options
  • Save lvarayut/daaa88fdd1b5855f100369ae8f499f35 to your computer and use it in GitHub Desktop.
Save lvarayut/daaa88fdd1b5855f100369ae8f499f35 to your computer and use it in GitHub Desktop.
Step-2 Use prop to set Title color
import React, { Component } from 'react';
import styled from 'styled-components';
const mainColor = 'indianred'
const Title = styled.h1`
color: ${props => props.color || 'goldenrod'}
`;
class App extends Component {
render() {
return (
<Title color={mainColor}>Mystagram</Title>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment