next.js/test/e2e/app-dir/actions/app/delayed-action/node/page.tsx
page.tsx16 lines277 B
import Link from 'next/link'
import { Button } from '../button'

export default function Page() {
  return (
    <>
      <div>
        <Link href="/delayed-action/node/other">Navigate to Other Page</Link>
      </div>
      <div>
        <Button />
      </div>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN