mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
625288796f
* Rename static to export in integration tests * Move export functionality into it’s own directory * Fix path
13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
import Link from 'next/link'
|
|
|
|
export default () => (
|
|
<div id='level1-home-page'>
|
|
<div>
|
|
<Link href='/'>
|
|
<a>Go Back</a>
|
|
</Link>
|
|
</div>
|
|
<p>This is the Level1 home page</p>
|
|
</div>
|
|
)
|