Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16656 Rev 16657
Línea 5... Línea 5...
5
import parse from 'html-react-parser'
5
import parse from 'html-react-parser'
6
import styles from './feeds.module.scss'
6
import styles from './feeds.module.scss'
7
import Options from '../../shared/options/Options'
7
import Options from '../../shared/options/Options'
Línea 8... Línea 8...
8
 
8
 
-
 
9
const FeedTemplate = ({ feed }) => {
9
const FeedTemplate = ({ feed }) => {
10
  const [commentState, setCommentState] = useState(feed.owner_comments)
10
  const [showDeleteModal, setShowDeleteModal] = useState(false)
11
  const [showDeleteModal, setShowDeleteModal] = useState(false)
Línea 11... Línea 12...
11
  const [options, setOptions] = useState([])
12
  const [options, setOptions] = useState([])
12
 
13