File size: 243 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
|