diff --git a/src/components/passwordRec/Stage1.js b/src/components/passwordRec/Stage1.js new file mode 100644 index 0000000..08d527e --- /dev/null +++ b/src/components/passwordRec/Stage1.js @@ -0,0 +1,71 @@ +// IMPORT MODULES +import React, { useState } from "react"; + +// IMPORT IMAGES +import Next from "../../icons/arrow-circle-right.svg"; + +const Stage1 = ({ setRecStage }) => { + const [inputValid, setinputValid] = useState({ + email: false, + validate: false, + }); + return ( +