Rev 5490 | AutorÃa | Ultima modificación | Ver Log |
/* eslint-disable react/prop-types */
import React from 'react'
import Cover from '../../../../shared/cover/Cover'
import Overview from '../../../components/overview/Overview'
const Edit = ({
userIdEncrypted,
userProfileIdEncrypted,
cover,
image,
following,
follower,
facebook,
twitter,
instagram,
fullName,
overview,
userExperiences,
months,
userEducations,
formattedAddress,
userLanguages,
userSkills,
userAptitudes,
userHobbiesAndInterests,
imageSizeCover,
imageProfileCover,
companySizesOptions,
degreesOptions,
industriesOptions,
languagesOptions,
skillsOptions,
aptitudesOptions,
hobbiesAndInterestsOptions,
addNotification, // redux action
}) => {
return (
<main>
<Cover
type="user"
isEdit
cover={cover}
id={userProfileIdEncrypted}
size={imageSizeCover}
/>
<section className="container main-section-data">
<div className="main-left-sidebar"></div>
<div className="feed-section">
<h3>{fullName}</h3>
<Overview overview={overview} userId={userIdEncrypted} isEdit />
</div>
<div className="right-sidebar"></div>
</section>
</main>
)
}
export default Edit