Skip to content

Instantly share code, notes, and snippets.

@d-ivashchuk
Created November 19, 2018 10:26
Show Gist options
  • Save d-ivashchuk/9cf59880f1069fb9687f89b1f5ae0e4a to your computer and use it in GitHub Desktop.
Save d-ivashchuk/9cf59880f1069fb9687f89b1f5ae0e4a to your computer and use it in GitHub Desktop.
...
import styled from 'styled-components'
const StyledLogo = styled(ReactLogo)`
height:25rem;
width:25rem;
display:block;
margin:auto;
`
class App extends Component {
render() {
return (
<StyledLogo />
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment