You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
599 B
26 lines
599 B
import React from 'react'; |
|
import PropTypes from 'prop-types'; |
|
import { IntlProvider, addLocaleData } from 'react-intl'; |
|
import { getLocale } from '../locales'; |
|
|
|
const { localeData, messages } = getLocale(); |
|
addLocaleData(localeData); |
|
|
|
export default class AdminComponent extends React.PureComponent { |
|
|
|
static propTypes = { |
|
locale: PropTypes.string.isRequired, |
|
children: PropTypes.node.isRequired, |
|
}; |
|
|
|
render () { |
|
const { locale, children } = this.props; |
|
|
|
return ( |
|
<IntlProvider locale={locale} messages={messages}> |
|
{children} |
|
</IntlProvider> |
|
); |
|
} |
|
|
|
}
|
|
|