Línea 5... |
Línea 5... |
5 |
|
5 |
|
6 |
import { useFetch } from '@hooks'
|
6 |
import { useFetch } from '@hooks'
|
Línea 7... |
Línea 7... |
7 |
import { formatObjectToArray } from '@utils'
|
7 |
import { formatObjectToArray } from '@utils'
|
8 |
|
- |
|
9 |
import ProfileCard from '@components/profile/ProfileCard'
|
8 |
|
10 |
import EducationsCard from '@components/profile/educations/EducationsCard'
|
9 |
import ProfileCard from '@components/profile/ProfileCard'
|
11 |
import LocationCard from '@components/profile/location/LocationCard'
|
10 |
import LocationCard from '@components/profile/location/LocationCard'
|
12 |
import LanguagesCard from '@components/profile/languages/LanguagesCard'
|
11 |
import LanguagesCard from '@components/profile/languages/LanguagesCard'
|
13 |
import SkillsCard from '@components/profile/skills/SkillsCard'
|
12 |
import SkillsCard from '@components/profile/skills/SkillsCard'
|
14 |
import AptitudesCard from '@components/profile/aptitudes/AptitudesCard'
|
13 |
import AptitudesCard from '@components/profile/aptitudes/AptitudesCard'
|
- |
|
14 |
import HobbiesCard from '@components/profile/hobbies/HobbiesCard'
|
15 |
import HobbiesCard from '@components/profile/hobbies/HobbiesCard'
|
15 |
import SuggestWidget from '@components/widgets/default/SuggestWidget'
|
Línea 16... |
Línea 16... |
16 |
import SuggestWidget from '@components/widgets/default/SuggestWidget'
|
16 |
import EducationsCard from '@components/profile/educations/educations-card'
|
- |
|
17 |
import ExperiencesCard from '@components/profile/experiences/experiences-card'
|
17 |
import ExperiencesCard from '@components/profile/experiences/experiences-card'
|
18 |
|
- |
|
19 |
const ProfileViewPage = () => {
|
18 |
|
20 |
const labels = useSelector(({ intl }) => intl.labels)
|
19 |
const ProfileViewPage = () => {
|
- |
|
Línea 20... |
Línea 21... |
20 |
const { uuid } = useParams()
|
21 |
const { uuid } = useParams()
|
21 |
const { data: profile } = useFetch(`/profile/view/${uuid}`)
|
22 |
|
22 |
const labels = useSelector(({ intl }) => intl.labels)
|
23 |
const { data: profile } = useFetch(`/profile/view/${uuid}`)
|
23 |
|
24 |
|