import React from "react"; import { BusyMessage } from "component/common"; import UserEmailNew from "component/userEmailNew"; import UserEmailVerify from "component/userEmailVerify"; export class Auth extends React.PureComponent { render() { const { isPending, email, isVerificationCandidate } = this.props; if (isPending) { return ; } else if (!email) { return ; } else if (isVerificationCandidate) { return ; } else { return {__("No further steps.")}; } } } export default Auth;