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

Fix JSX in readme (#2512)

An unclosed tag was resulting in some broken syntax highlighting.
This commit is contained in:
Paul O’Shannessy 2017-07-08 21:54:47 -07:00 committed by Arunoda Susiripala
parent dc607e452b
commit a3495b364d

View file

@ -353,7 +353,7 @@ export default () => (
// pages/index.js // pages/index.js
import Link from 'next/link' import Link from 'next/link'
export default () => ( 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>
) )
``` ```