rsnext/test/integration/prerender-preview/pages/to-index.js

16 lines
233 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export function getStaticProps() {
return { props: {} }
}
export default function() {
return (
<main>
<Link href="/">
<a id="to-index">To Index</a>
</Link>
</main>
)
}