rsnext/test/integration/production/pages/external-and-back.js

13 lines
243 B
JavaScript
Raw Normal View History

const Page = ({ from }) => (
<div>
<p>{from}</p>
<a href="https://google.com">External link</a>
</div>
)
Page.getInitialProps = () => {
return { from: typeof window === 'undefined' ? 'server' : 'client' }
}
export default Page