From 42217f4d3cf2f431219e9dd9487994dfd0e42765 Mon Sep 17 00:00:00 2001 From: muchristian Date: Mon, 1 Jun 2020 03:30:23 +0200 Subject: [PATCH] feat(Users should be presented with a reset password link) Document code using JSDOC Under activity, endeavor to come up with the thought process (data flow) needed to implement this feature --- src/entry/ResetPassword.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/entry/ResetPassword.js diff --git a/src/entry/ResetPassword.js b/src/entry/ResetPassword.js new file mode 100644 index 0000000..f78e385 --- /dev/null +++ b/src/entry/ResetPassword.js @@ -0,0 +1,14 @@ +import React, { Component, Fragment } from 'react'; + +class ResetPassword extends Component { + + render() { + return ( + +

reset password form should go here

+
+ ) + } + +} +export default ResetPassword \ No newline at end of file