render() {
    const { saving } = this.props;
    const { user } = this.state;

    return <ProfileForm user={user} onChange={this.onChange} onSubmit={this.submit} saving={saving} />;