Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16666 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16666 Rev 16669
Línea 1... Línea 1...
1
import React, { useState } from 'react'
1
import React, { useState } from 'react'
2
import { axios } from '../../utils'
2
import { axios } from '../../utils'
Línea -... Línea 3...
-
 
3
 
-
 
4
import styles from './comments.module.scss'
3
 
5
 
4
const CommentForm = ({ image, profileUrl, sendUrl, onSubmit }) => {
6
const CommentForm = ({ image, profileUrl, sendUrl, onSubmit }) => {
Línea 5... Línea 7...
5
  const [comment, setComment] = useState('')
7
  const [comment, setComment] = useState('')
6
 
8
 
Línea 26... Línea 28...
26
  const handleInputChange = ({ target }) => {
28
  const handleInputChange = ({ target }) => {
27
    setComment(target.value)
29
    setComment(target.value)
28
  }
30
  }
Línea 29... Línea 31...
29
 
31
 
30
  return (
32
  return (
31
    <form className="d-flex w-100" onSubmit={handleSubmit}>
33
    <form className={styles.comment_form} onSubmit={handleSubmit}>
32
      <a href={profileUrl}>
-
 
33
        <img
-
 
34
          className="avatar-img rounded-circle"
-
 
35
          src={image}
34
      <a href={profileUrl}>
36
          alt="user avatar image"
-
 
37
        />
35
        <img src={image} alt="User image" />
38
      </a>
36
      </a>
39
      <input
37
      <input
40
        type="text"
38
        type="text"
41
        className="form-control"
39
        className="form-control"