next.js/test/e2e/styled-jsx/pages/index.js
index.js12 lines217 B
import { Button } from 'my-comps/button'

export default function Page() {
  return (
    <div>
      <style jsx>{'p { color: red; }'}</style>
      <p>hello world</p>
      <Button>Click me</Button>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN