File size: 277 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
    </>
  )
}