styled_jsx 2.0.0

AST transforms visitor for styled-jsx
Documentation
1
2
3
4
5
6
7
8
9
10
11
export default () => (
  <div>
    <p>test</p>
    <style jsx>{`
      .a-selector:hover,
      .a-selector:focus {
        outline: none;
      }
    `}</style>
  </div>
);