mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
e2b518525c
Changes: - added withIntl HOC because injectIntl do no hoist static methods - fixed `Cannot read property 'locale' of undefined`
39 lines
895 B
JavaScript
39 lines
895 B
JavaScript
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 (
|
|
<Layout>
|
|
<Head>
|
|
<meta name='description' content={intl.formatMessage(description)} />
|
|
</Head>
|
|
<p>
|
|
<FormattedMessage id='greeting' defaultMessage='Hello, World!' />
|
|
</p>
|
|
<p>
|
|
<FormattedNumber value={1000} />
|
|
</p>
|
|
</Layout>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default withIntl(Index)
|