Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 3811 Rev 4064
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React, { useState, useRef } from 'react'
2
import React, { useState, useRef } from 'react'
3
import axios from '../../utils/axios'
-
 
4
import parse from "html-react-parser";
3
import parse from "html-react-parser";
5
import moment from 'moment'
4
import moment from 'moment'
6
import { BiShareAlt } from 'react-icons/bi'
5
import { BiShareAlt } from 'react-icons/bi'
7
import { EmailIcon, EmailShareButton, FacebookIcon, FacebookShareButton, RedditIcon, RedditShareButton, TelegramIcon, TelegramShareButton, TwitterIcon, TwitterShareButton, WhatsappIcon, WhatsappShareButton } from 'react-share';
6
import { EmailIcon, EmailShareButton, FacebookIcon, FacebookShareButton, RedditIcon, RedditShareButton, TelegramIcon, TelegramShareButton, TwitterIcon, TwitterShareButton, WhatsappIcon, WhatsappShareButton } from 'react-share';
8
import { addNotification } from '../../redux/notification/notification.actions'
7
import { addNotification } from '../../redux/notification/notification.actions'
9
import { useDispatch } from 'react-redux'
8
import { useDispatch } from 'react-redux'
-
 
9
import { axios } from '../../utils';
Línea 10... Línea 10...
10
 
10
 
Línea 11... Línea 11...
11
export default function PostView({ post = {} }) {
11
export default function PostView({ post = {} }) {
12
 
12