not so inline
const root = {
...
}
const logo = {
...
}
import from another file
import {root, logo} from './header.css.js'
(with enough Webpack tomfoolery)
Styled Components
const Root = styled.div`
background: black;
padding: 10px;
display: flex;
`
const Logo = styled.img`
border: 0;
`