We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1c1733f
data-jsx
It's now possible to combine a global and scoped style in the same component (#41) [@rauchg]
export default () => ( <div> <p>hi</p> <style jsx global>{` body { background: red } `}</style> <style jsx>{`p { color: red; }`}</style> </div> )