I created an app with react and firebase authentication I wish that during registration / login, I only need to enter the "username".
"username"@mydefaultdomain.com
@observer
class Register extends React.Component {
constructor(props) {
super(props);
this.state = {
name: "",
email: "",
password: "",
verifyPassword: "",
isEmailInvalid: true
};
}