Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5488 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5488 Rev 5490
Línea 23... Línea 23...
23
 
23
 
24
  return (
24
  return (
25
    <>
25
    <>
26
      <div className="profile-attr">
26
      <div className="profile-attr">
27
        <div className="profile-attr-header">
27
        <div className="profile-attr-header">
28
          <h3>{labels.SKILLS}</h3>
28
          <h2>{labels.SKILLS}</h2>
29
          {isEdit && (
29
          {isEdit && (
30
            <IconButton onClick={handleEdit}>
30
            <IconButton onClick={handleEdit}>
31
              <EditIcon />
31
              <EditIcon />
32
            </IconButton>
32
            </IconButton>
33
          )}
33
          )}
34
        </div>
34
        </div>
35
        <ul>
35
        <ul>
36
          {settedSkills.length ? (
36
          {settedSkills.length ? (
37
            settedSkills.map(({ name }) => (
37
            settedSkills.map(({ name }) => (
38
              <li key={name}>
-
 
39
                <a href="#" title="">
38
              <li key={name}>
40
                  {name}
-
 
41
                </a>
39
                <span>{name}</span>
42
              </li>
40
              </li>
43
            ))
41
            ))
44
          ) : (
42
          ) : (
45
            <EmptySection align="left" message={labels.EMPTY} />
43
            <EmptySection align="left" message={labels.EMPTY} />