(Go Back) Choose State To Move From
" || !this.props.user) {
return (
Loading...
)
}
return (
Profile
Username: {this.props.user.username}
First Name: {this.props.user.firstName}
Last Name: {this.props.user.lastName}
Email: {this.props.user.email}
Address: {this.props.user.address}
City: {this.props.user.city}
State: {this.props.user.state}
Zip Code: {this.props.user.zipCode}
Phone Number: {this.props.user.phoneNumber}
Emergency Contact: {this.props.user.emergencyContact}
Emergency Contact Phone Number: {this.props.user.emergencyContactPhoneNumber}
)
}
}
export default Profile;