1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-zones/home/pages/about.js
Tim Neutkens 02ab732096
Remove next/asset (#6046)
* Remove next/asset

Reasoning described in #5970

* Remove next/asset tests

* Bring back asset-page
2019-01-14 01:32:20 +01:00

14 lines
234 B
JavaScript

import Link from 'next/link'
export default () => (
<div>
<p>This is the about page.</p>
<div>
<Link href='/'>
<a>Go Back</a>
</Link>
</div>
<img width={200} src='/static/zeit.png' />
</div>
)