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

16 lines
234 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export function getStaticProps() {
return { props: {} }
}
2020-05-18 21:24:37 +02:00
export default function () {
return (
<main>
<Link href="/">
<a id="to-index">To Index</a>
</Link>
</main>
)
}