Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5358 Rev 5359
Línea 66... Línea 66...
66
        </div>
66
        </div>
67
        {loading
67
        {loading
68
          ? <Spinner />
68
          ? <Spinner />
69
          : contacts.map(({ name, image, link_open_or_create }) => (
69
          : contacts.map(({ name, image, link_open_or_create }) => (
70
              <div key={name} className="d-flex align-items-center justify-content-around" style={{ gap: '.5rem' }}>
70
              <div key={name} className="d-flex align-items-center justify-content-around" style={{ gap: '.5rem' }}>
71
                <div className="d-flex align-items-center">
71
                <div className="d-flex align-items-center" style={{ gap: '.5rem' }}>
72
                  <img src={image} alt={`User ${name} image`} width={40} height={40} style={{ borderRadius: '50%' }}/>
72
                  <img src={image} alt={`User ${name} image`} width={40} height={40} style={{ borderRadius: '50%' }}/>
73
                  <p>{name}</p>
73
                  <p>{name}</p>
74
                </div>
74
                </div>
Línea 75... Línea 75...
75
 
75