File size: 340 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import * as React from 'react'
import Link from 'next/link'
/** Add your relevant code here for the issue to reproduce */
export default function Home() {
return (
<>
<Link href="/will-redirect">Go to a page that calls redirect()</Link>
<Link href="/will-notfound">Go to a page that calls notFound()</Link>
</>
)
}
|