aboutsummaryrefslogtreecommitdiff
path: root/demos/hello-next/pages/second.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'demos/hello-next/pages/second.tsx')
-rw-r--r--demos/hello-next/pages/second.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/demos/hello-next/pages/second.tsx b/demos/hello-next/pages/second.tsx
index ae5fd5ec8..8cb0daa89 100644
--- a/demos/hello-next/pages/second.tsx
+++ b/demos/hello-next/pages/second.tsx
@@ -7,10 +7,14 @@ export default function Second({}) {
<ul>
<li>
- <a href="/">Root page</a>
+ <Link href="/">
+ <a>Root page</a>
+ </Link>
</li>
<li>
- <a href="/foo/bar/third">Third page</a>
+ <Link href="/foo/bar/third">
+ <a>Third page</a>
+ </Link>
</li>
</ul>
</div>