Rename JSX files with proper .jsx extension (#23733)

This commit is contained in:
Renaud Chaput
2023-02-20 03:20:59 +01:00
committed by GitHub
parent f0e1b12c10
commit 44a7d87cb1
248 changed files with 10 additions and 2 deletions

View File

@ -0,0 +1,26 @@
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>
);
}
}