Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3028 | Rev 3030 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3028 Rev 3029
Línea 21... Línea 21...
21
  const { data: profile } = useFetch(`/profile/view/${uuid}`)
21
  const { data: profile } = useFetch(`/profile/view/${uuid}`)
22
  const labels = useSelector(({ intl }) => intl.labels)
22
  const labels = useSelector(({ intl }) => intl.labels)
Línea 23... Línea 23...
23
 
23
 
24
  return (
24
  return (
25
    <Grid container spacing={2}>
25
    <Grid container spacing={2}>
26
      <Grid item xs={12} md={8} spacing={2}>
-
 
27
        <Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
26
      <Grid item xs md={8} spacing={2} direction='column'>
28
          <ProfileCard {...profile} />
-
 
29
 
-
 
30
          <ExperiencesCard
-
 
31
            experiences={profile?.user_experiences}
-
 
32
            uuid={uuid}
-
 
33
          />
-
 
34
 
-
 
Línea 35... Línea 27...
35
          <EducationsCard educations={profile?.user_educations} uuid={uuid} />
27
        <ProfileCard {...profile} />
Línea 36... Línea -...
36
 
-
 
37
          <LocationCard address={profile?.formatted_address} uuid={uuid} />
28
 
38
 
-
 
39
          <LanguagesCard
-
 
Línea 40... Línea -...
40
            languages={formatObjectToArray(profile?.user_languages)}
-
 
41
            uuid={uuid}
29
        <ExperiencesCard experiences={profile?.user_experiences} uuid={uuid} />
42
          />
-
 
43
 
-
 
Línea 44... Línea 30...
44
          <SkillsCard
30
 
45
            skills={formatObjectToArray(profile?.user_skills)}
31
        <EducationsCard educations={profile?.user_educations} uuid={uuid} />
-
 
32
 
-
 
33
        <LocationCard address={profile?.formatted_address} uuid={uuid} />
-
 
34
 
-
 
35
        <LanguagesCard
-
 
36
          languages={formatObjectToArray(profile?.user_languages)}
46
            uuid={uuid}
37
          uuid={uuid}
47
          />
38
        />
48
 
39
 
49
          <AptitudesCard
40
        <SkillsCard
50
            aptitudes={formatObjectToArray(profile?.user_aptitudes)}
41
          skills={formatObjectToArray(profile?.user_skills)}
51
            uuid={uuid}
42
          uuid={uuid}
52
          />
43
        />
-
 
44
 
-
 
45
        <AptitudesCard
-
 
46
          aptitudes={formatObjectToArray(profile?.user_aptitudes)}
-
 
47
          uuid={uuid}
53
 
48
        />
54
          <HobbiesCard
49
 
Línea 55... Línea 50...
55
            hobbies={formatObjectToArray(profile?.user_hobbies_and_interests)}
50
        <HobbiesCard
56
            uuid={uuid}
51
          hobbies={formatObjectToArray(profile?.user_hobbies_and_interests)}
57
          />
52
          uuid={uuid}
58
        </Box>
53
        />
59
      </Grid>
54
      </Grid>
60
 
55