1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Add a missing slash (#2634)

Improving `next.js`, one slash at a time
This commit is contained in:
cyrilf 2017-07-24 16:35:47 +02:00 committed by Arunoda Susiripala
parent e319b4fdce
commit 34830a05c9

View file

@ -339,7 +339,7 @@ export default () => (
// pages/index.js
import Link from 'next/link'
export default () => (
<div>Click <Link href='/about'><img src="/static/image.png"></Link></div>
<div>Click <Link href='/about'><img src="/static/image.png" /></Link></div>
)
```