poly_styled_jsx 0.6.1

AST transforms for styled-jsx
Documentation
export default () => (
  <div>
    <p>test</p>
    <style jsx>{`
      p {
        color: red;
      }
      
      p{
        color: red
      }
      
      * {
        color: blue;
      }
      
      [href="woot"] {
        color: red;
      }
    `}</style>
  </div>
)