Преглед изворни кода

create new react component to show password reset request form

kaori пре 4 година
родитељ
комит
0684641403
1 измењених фајлова са 20 додато и 0 уклоњено
  1. 20 0
      src/client/js/components/PasswordResetRequestForm.jsx

+ 20 - 0
src/client/js/components/PasswordResetRequestForm.jsx

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