| 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> | |
| </> | |
| ) | |
| } | |
| 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> | |
| </> | |
| ) | |
| } | |