next.js/test/e2e/app-dir/navigation/app/nested-navigation/TabNavItem.js
TabNavItem.js14 lines249 B
import Link from 'next/link'

export const TabNavItem = ({ children, href, prefetch }) => {
  return (
    <Link
      href={href}
      style={{ margin: '10px', display: 'block' }}
      prefetch={prefetch}
    >
      {children}
    </Link>
  )
}
Quest for Codev2.0.0
/
SIGN IN