Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2934 Rev 2936
Línea 22... Línea 22...
22
  }
22
  }
Línea 23... Línea 23...
23
 
23
 
24
  return (
24
  return (
25
    <ProfileCardsGrid>
25
    <ProfileCardsGrid>
-
 
26
      {connections.map(({ id, ...rest }) => (
-
 
27
        <ProfileItem
-
 
28
          key={id}
26
      {connections.map(({ id, ...rest }) => (
29
          {...rest}
-
 
30
          fetchCallback={onComplete}
-
 
31
          btnCancelTitle='Eliminar'
27
        <ProfileItem key={id} {...rest} fetchCallback={onComplete} />
32
        />
28
      ))}
33
      ))}
29
    </ProfileCardsGrid>
34
    </ProfileCardsGrid>
30
  )
35
  )