rsnext/test/integration/static/pages/level1/index.js
2017-05-11 09:09:31 -07: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>
)