Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5214 Rev 5215
Línea 25... Línea 25...
25
  useEffect(() => {
25
  useEffect(() => {
26
    getData()
26
    getData()
27
  }, [])
27
  }, [])
Línea 28... Línea 28...
28
 
28
 
29
  return (
29
  return (
30
    <div className='peopleYouMayKnow'>
-
 
31
      <div className="sd-title d-flex align-items-center justify-content-between">
30
    <div className='daily_pulse-widget'>
32
        <h3>Pulso Diario</h3>
-
 
33
      </div>
31
      <h3>Pulso Diario</h3>
34
      <span>Puntos acumulados: {points}</span>
32
      <span>Puntos acumulados: {points}</span>
35
      <PulseList options={emojisHowAreYouFeel} title='¿Como te sientes hoy?' onComplete={getData}/>
33
      <PulseList options={emojisHowAreYouFeel} title='¿Como te sientes hoy?' onComplete={getData} />
36
      <PulseList options={emojisClimateOnYourOrganization} title='¿Como esta el clima en la organización?' onComplete={getData}/>
34
      <PulseList options={emojisClimateOnYourOrganization} title='¿Como esta el clima en la organización?' onComplete={getData} />
37
    </div>
35
    </div>
38
  )
36
  )
Línea 39... Línea 37...
39
}
37
}