function SSRPage({ test }) { return

{test}

} SSRPage.getInitialProps = () => { return { test: 'hello', } } export default SSRPage