Guest User

Untitled

a guest
Jan 24th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. export default () => (
  2. <div>
  3. Hello world
  4. <p>scoped!</p>
  5. <style jsx>{`
  6. p {
  7. color: blue;
  8. }
  9. div {
  10. background: red;
  11. }
  12. @media (max-width: 600px) {
  13. div {
  14. background: blue;
  15. }
  16. }
  17. `}</style>
  18. <style global jsx>{`
  19. body {
  20. background: black;
  21. }
  22. `}</style>
  23. </div>
  24. )
Add Comment
Please, Sign In to add comment