rsnext/test/integration/export/pages/about.js

13 lines
202 B
JavaScript
Raw Normal View History

2017-05-09 23:03:20 +02:00
import Link from 'next/link'
export default () => (
<div id='about-page'>
<div>
<Link href='/'>
<a>Go Back</a>
</Link>
</div>
<p>This is the About page</p>
</div>
)