houdini/client/js/components/styles/render-styles.js

8 lines
190 B
JavaScript

module.exports = _ => {
var styleTag = document.createElement('style')
return styles => {
styleTag.innerHTML = styles
document.querySelector('head').appendChild(styleTag)
}
}