rsnext/test/integration/export-serverless/pages/about.js

19 lines
352 B
JavaScript
Raw Normal View History

import Link from 'next/link'
const About = ({ bar }) => (
<div id="about-page">
<div>
<Link href="/">
<a>Go Back</a>
</Link>
</div>
<p>{`This is the About page foo${bar || ''}`}</p>
</div>
)
About.getInitialProps = async () => {
return { bar: typeof window === 'undefined' ? 'bar' : '' }
}
export default About