Skip to content

Commit

Permalink
Use a list for the links
Browse files Browse the repository at this point in the history
  • Loading branch information
lfades committed Oct 29, 2020
1 parent a435eb6 commit 8994de7
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions examples/using-preact/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,23 @@ export default function Home() {
return (
<div>
Hello World.{' '}
<Link href="/about">
<a>About</a>
</Link>
<Link href="/ssr">
<a>SSR</a>
</Link>
<Link href="/ssg">
<a>SSG</a>
</Link>
<ul>
<li>
<Link href="/about">
<a>About</a>
</Link>
</li>
<li>
<Link href="/ssr">
<a>SSR</a>
</Link>
</li>
<li>
<Link href="/ssg">
<a>SSG</a>
</Link>
</li>
</ul>
</div>
)
}

0 comments on commit 8994de7

Please sign in to comment.