import React from 'react' import Link from 'next/link' export const config = { experimentalPrerender: true } export default class Post extends React.Component { static async getInitialProps () { return { data: typeof window === 'undefined' ? 'SSR' : 'CSR' } } render () { return ( <>

Post: {this.props.data}

to home ) } }