const Page = ({ name }) =>
{`Hello, ${name}`}
Page.getInitialProps = () => ({ name: 'world' }) export default Page