import React from 'react' import { Helmet } from 'react-helmet' import { connect } from 'react-redux' import { initProfileForm, updateProfileFormData, handleProfileFormSubmit } from '../../actions' class ProfileEdit extends React.Component { componentDidMount() { this.props.initForm(this.props.user) } render () { const { formProfile, onHandleFormChange, onHandleProfileFormSubmit, user } = this.props return (
mpwo - {user.username} - Edit Profile

Profile Edition

{user.username}
onHandleProfileFormSubmit(event)} >