import Link from 'next/link' const About = ({ bar }) => (
Go Back

{`This is the About page foo${bar || ''}`}

) About.getInitialProps = async () => { return { bar: typeof window === 'undefined' ? 'bar' : '' } } export default About