Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2864 Rev 3274
Línea 1... Línea 1...
1
import React, { useCallback, useMemo, useState } from 'react'
1
import React, { useCallback, useMemo, useState } from 'react'
2
import { useDispatch } from 'react-redux'
2
import { useDispatch } from 'react-redux'
3
import { styled } from '@mui/material'
3
import { styled, Typography } from '@mui/material'
Línea 4... Línea 4...
4
 
4
 
5
import { axios } from '@app/utils'
5
import { axios } from '@app/utils'
6
import { REACTIONS } from '@app/constants/feed'
6
import { REACTIONS } from '@app/constants/feed'
7
import { addNotification } from '@app/redux/notification/notification.actions'
7
import { addNotification } from '@app/redux/notification/notification.actions'
Línea 97... Línea 97...
97
          <Icon style={{ color: currentReaction.color }} />
97
          <Icon style={{ color: currentReaction.color }} />
98
        ) : (
98
        ) : (
99
          <Icon />
99
          <Icon />
100
        )}
100
        )}
Línea -... Línea 101...
-
 
101
 
-
 
102
        <Typography
-
 
103
          sx={{ display: { xs: 'none', md: 'inline-flexs' } }}
-
 
104
          variant='overline'
101
 
105
        >
-
 
106
          {currentReaction ? currentReaction.label : 'Reaccionar'}
Línea 102... Línea 107...
102
        {currentReaction ? currentReaction.label : 'Reaccionar'}
107
        </Typography>
103
 
108
 
104
        <ReactionsBox
109
        <ReactionsBox
105
          sx={{
110
          sx={{