Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1650 Rev 1896
Línea 53... Línea 53...
53
  const [totalReactions, setTotalReactions] = useState(total_reactions)
53
  const [totalReactions, setTotalReactions] = useState(total_reactions)
54
  const [showComments, setShowComments] = useState(false)
54
  const [showComments, setShowComments] = useState(false)
55
  const labels = useSelector(({ intl }) => intl.labels)
55
  const labels = useSelector(({ intl }) => intl.labels)
56
  const dispatch = useDispatch()
56
  const dispatch = useDispatch()
Línea 57... Línea 57...
57
 
57
 
58
  const addComment = ({ comment }) => {
58
  const addComment = (comment) => {
59
    const formData = new FormData()
59
    const formData = new FormData()
Línea 60... Línea 60...
60
    formData.append('comment', comment)
60
    formData.append('comment', comment)
61
 
61