import React, { Component } from 'react' import Link from 'next/link' export const config = { experimentalPrerender: true } class Page extends Component { static async getInitialProps () { return { world: 'world' } } render () { return ( <>

hello {this.props.world}

to home
to another ) } } export default Page