Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2934 Rev 2935
Línea 18... Línea 18...
18
  }
18
  }
Línea 19... Línea 19...
19
 
19
 
20
  return (
20
  return (
21
    <ProfileCardsGrid>
21
    <ProfileCardsGrid>
-
 
22
      {profiles.map(({ id, ...rest }) => (
-
 
23
        <ProfileItem
-
 
24
          key={id}
22
      {profiles.map(({ id, ...rest }) => (
25
          {...rest}
-
 
26
          fetchCallback={onComplete}
-
 
27
          btnCancelTitle='Borrar perfil'
23
        <ProfileItem key={id} {...rest} fetchCallback={onComplete} />
28
        />
24
      ))}
29
      ))}
25
    </ProfileCardsGrid>
30
    </ProfileCardsGrid>
26
  )
31
  )