Starting with styled components
import styled from 'styled-components'
const Wrapper = styled.div`
background-color: rgb(218, 163, 87);
font: normal 16px / normal Arial, sans-serif;
`
export default class App extends Component {
render () {
return (
<Wrapper>
<h1>CSS in JS</h1>
</Wrapper>
)
}
}
npm install --save styled-components