import React from 'react'; import PropTypes from 'prop-types'; import { translate } from 'react-i18next'; function Footer({ t }) { return ( ); } Footer.propTypes = { t: PropTypes.func.isRequired }; export default translate(['loginApp'], { wait: true })(Footer);