Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ms314006/526130e5bcb26c6715e87845bb6e26f2 to your computer and use it in GitHub Desktop.
Save ms314006/526130e5bcb26c6715e87845bb6e26f2 to your computer and use it in GitHub Desktop.
import React from 'react';
import styled from 'styled-components';
const Title = styled.div`
font-size: 32px;
color: ${props => props.color ? props.color : '#0f4c75'};
`;
const App = () => (
<>
<Title>Hello world!</Title>
<Title color="#fdcb9e">Hello world!</Title>
</>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment