| 1234567891011121314151617181920 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- const PasswordResetRequestForm = (props) => {
- // const { t } = props;
- return (
- <>
- Password Reset Request Form
- </>
- );
- };
- PasswordResetRequestForm.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- };
- export default withTranslation()(PasswordResetRequestForm);
|