rsnext/test/integration/export-serverless/pages/level1/index.js
JJ Kasper 6fcb6230d2 Add support for exporting from serverless build (#9744)
* Add support for exporting from serverless build

* Add more tests

* Update syntax

* Dont add dynamic params in worker

* Update amphtml rel for serverless tests

* Update tests again

* Update dynamic params populating

* Fix params parsing

* Pass params separately
2019-12-14 01:31:48 -05:00

12 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>
)