Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5284 Rev 5285
Línea 11... Línea 11...
11
  description = '',
11
  description = '',
12
  visits = 0,
12
  visits = 0,
13
  connections = 0
13
  connections = 0
14
}) => {
14
}) => {
15
  return (
15
  return (
16
        <div className={`sidebar__top ${!cover && 'pt-3'}`}>
16
        <div className='sidebar__top'>
17
            {cover && <img src='./static/profile_2.jpg' alt='Profile cover' className='sidebar__cover' />}
17
            {cover && <img src='./static/profile_2.jpg' alt='Profile cover' className='sidebar__cover' />}
18
            <Avatar imageUrl={image} size='xl' name={fullName} />
18
            <Avatar imageUrl={image} size='xl' name={fullName} />
19
            <h2>{parse(fullName)}</h2>
19
            <h2>{parse(fullName)}</h2>
20
            {parse(description)}
20
            {parse(description)}
21
 
-
 
22
            <StatItem title={`¿${LABELS.WHO_HAS_SEEN_MY_PROFILE}?`} number={visits} url='/profile/people-viewed-profile' />
21
            <StatItem title={`¿${LABELS.WHO_HAS_SEEN_MY_PROFILE}?`} number={visits} url='/profile/people-viewed-profile' />
23
            <StatItem title={LABELS.CONNECTIONS} number={connections} url='/connection/my-connections' />
22
            <StatItem title={LABELS.CONNECTIONS} number={connections} url='/connection/my-connections' />
24
        </div>
23
        </div>
25
  )
24
  )
26
}
25
}