import React from 'react' import { translate } from 'react-i18next' function MyComponennt ({ t }) { return (
{t('extendedComponent')}
) } const Extended = translate('common')(MyComponennt) export default Extended