Línea 2... |
Línea 2... |
2 |
import { axios } from '../../utils'
|
2 |
import { axios } from '../../utils'
|
3 |
import { useLocation } from 'react-router-dom'
|
3 |
import { useLocation } from 'react-router-dom'
|
4 |
import { getBackendVars } from '../../services/backendVars'
|
4 |
import { getBackendVars } from '../../services/backendVars'
|
5 |
import { addNotification } from '../../redux/notification/notification.actions'
|
5 |
import { addNotification } from '../../redux/notification/notification.actions'
|
6 |
import { useDispatch, useSelector } from 'react-redux'
|
6 |
import { useDispatch, useSelector } from 'react-redux'
|
7 |
import { CommentForm, CommentsList } from '../../components/feed/CommentSection'
|
- |
|
8 |
import { Container, Grid } from '@mui/material'
|
7 |
import { Container, Grid } from '@mui/material'
|
9 |
import parse from 'html-react-parser'
|
8 |
import parse from 'html-react-parser'
|
Línea 10... |
Línea 9... |
10 |
|
9 |
|
11 |
import TungstenIcon from '@mui/icons-material/Tungsten'
|
10 |
import TungstenIcon from '@mui/icons-material/Tungsten'
|
Línea 21... |
Línea 20... |
21 |
import withExternalShare from '../../components/dashboard/linkedin/withExternalShare'
|
20 |
import withExternalShare from '../../components/dashboard/linkedin/withExternalShare'
|
22 |
import Paraphrase from '../../components/UI/Paraphrase'
|
21 |
import Paraphrase from '../../components/UI/Paraphrase'
|
23 |
import WidgetWrapper from '../../components/widgets/WidgetLayout'
|
22 |
import WidgetWrapper from '../../components/widgets/WidgetLayout'
|
24 |
import withReactions from '../../hocs/withReaction'
|
23 |
import withReactions from '../../hocs/withReaction'
|
25 |
import MobileShare from '../../components/dashboard/linkedin/mobile-share/MobileShare'
|
24 |
import MobileShare from '../../components/dashboard/linkedin/mobile-share/MobileShare'
|
- |
|
25 |
import CommentForm from '@app/components/dashboard/linkedin/comments/comment-form'
|
- |
|
26 |
import CommentsList from '@app/components/dashboard/linkedin/comments/comment-list'
|
Línea 26... |
Línea 27... |
26 |
|
27 |
|
27 |
const PostViewPage = () => {
|
28 |
const PostViewPage = () => {
|
28 |
const [post, setPost] = useState({})
|
29 |
const [post, setPost] = useState({})
|
29 |
const [totalSends, setTotalSends] = useState(0)
|
30 |
const [totalSends, setTotalSends] = useState(0)
|