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

9 lines
190 B
JavaScript
Raw Normal View History

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