import React, {Component} from 'react' import {FormattedRelative} from 'react-intl' import pageWithIntl from '../components/PageWithIntl' import Layout from '../components/Layout' class About extends Component { static async getInitialProps ({req}) { return {someDate: Date.now()} } render () { return (

) } } export default pageWithIntl(About)