Skip to content

Instantly share code, notes, and snippets.

@egoist
Created November 18, 2016 08:19
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 egoist/4400b9a0e99900a54e7a62eeedc92f9f to your computer and use it in GitHub Desktop.
Save egoist/4400b9a0e99900a54e7a62eeedc92f9f to your computer and use it in GitHub Desktop.
// component oriented css
import {css} from 'cocss'
import cssDOM from 'cocss/dom'
const style = cssDOM.renderToString({
color: 'red',
backgroundColor: 'cyan'
})
// style:
// {
// color: red;
// background-color: cyan
// }
cssDOM.insertString(style)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment