next.js/test/integration/css-fixtures/next-issue-12343/pages/another-page.js
another-page.js16 lines296 B
import { Button } from '../components/button'
import Link from 'next/link'

function AnotherPage() {
  return (
    <div>
      <h1>Another page</h1>
      <Link href="/">
        <Button id="link-index">Another Button instance</Button>
      </Link>
    </div>
  )
}

export default AnotherPage
Quest for Codev2.0.0
/
SIGN IN