Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5781 Rev 5788
Línea 79... Línea 79...
79
      )}
79
      )}
80
      <div className={`reactions ${showReactions ? 'active' : ''}`}>
80
      <div className={`reactions ${showReactions ? 'active' : ''}`}>
81
        {reactionsOptions.map((reaction) => (
81
        {reactionsOptions.map((reaction) => (
82
          <button
82
          <button
83
            key={reaction.type}
83
            key={reaction.type}
84
            onClick={() => selectReactionHandler(reaction.type)}
84
            onClickCapture={() => selectReactionHandler(reaction.type)}
85
          >
85
          >
86
            {reaction.icon}
86
            {reaction.icon}
87
          </button>
87
          </button>
88
        ))}
88
        ))}
89
      </div>
89
      </div>