next.js/test/integration/link-ref-pages/pages/function.js
function.js15 lines231 B
import React from 'react'
import Link from 'next/link'

const MyLink = React.forwardRef((props, ref) => (
  <span {...props} ref={ref}>
    Click me
  </span>
))

export default () => (
  <Link href="/">
    <MyLink />
  </Link>
)
Quest for Codev2.0.0
/
SIGN IN