import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import LoaderIcon from 'react-feather/dist/icons/loader'; import style from './style.module.css'; const Loader = ({ t }) => (
{ t('Loading...') }
); Loader.propTypes = { t: PropTypes.func.isRequired }; export { Loader }; export default withTranslation()(Loader);