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.
27 lines
596 B
27 lines
596 B
import PropTypes from 'prop-types'; |
|
import { PureComponent } from 'react'; |
|
|
|
import { IntlProvider } from 'react-intl'; |
|
|
|
import { getLocale, onProviderError } from '../locales'; |
|
|
|
const { messages } = getLocale(); |
|
|
|
export default class AdminComponent extends PureComponent { |
|
|
|
static propTypes = { |
|
locale: PropTypes.string.isRequired, |
|
children: PropTypes.node.isRequired, |
|
}; |
|
|
|
render () { |
|
const { locale, children } = this.props; |
|
|
|
return ( |
|
<IntlProvider locale={locale} messages={messages} onError={onProviderError}> |
|
{children} |
|
</IntlProvider> |
|
); |
|
} |
|
|
|
}
|
|
|