rsnext/test/integration/production-swcminify/pages/external-and-back.js
2021-10-25 13:49:11 +02:00

12 lines
243 B
JavaScript

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