mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
02ab732096
* Remove next/asset Reasoning described in #5970 * Remove next/asset tests * Bring back asset-page
14 lines
234 B
JavaScript
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>
|
|
)
|