import React, { Component } from 'react' import { FormattedMessage, FormattedNumber, defineMessages } from 'react-intl' import Head from 'next/head' import Layout from '../components/Layout' import withIntl from '../lib/withIntl' const { description } = defineMessages({ description: { id: 'description', defaultMessage: 'An example app integrating React Intl with Next.js' } }) class Index extends Component { static getInitialProps () { // Do something } render () { const { intl } = this.props return (

) } } export default withIntl(Index)