import React from "react"; import Link from "component/link"; import { FormRow } from "component/form.js"; class UserVerify extends React.PureComponent { constructor(props) { super(props); this.state = { code: "", }; } handleCodeChanged(event) { this.setState({ code: event.target.value, }); } handleSubmit(event) { event.preventDefault(); this.props.verifyUserEmail(this.state.code); } render() { const { errorMessage, isPending } = this.props; return
VERIFY
; return ( ); } } export default UserVerify;