| Línea 2... |
Línea 2... |
| 2 |
import { useDispatch, useSelector } from 'react-redux'
|
2 |
import { useDispatch, useSelector } from 'react-redux'
|
| 3 |
import { Box, Button, styled, Typography } from '@mui/material'
|
3 |
import { Box, Button, styled, Typography } from '@mui/material'
|
| 4 |
import { ChatOutlined, SendOutlined, ShareOutlined } from '@mui/icons-material'
|
4 |
import { ChatOutlined, SendOutlined, ShareOutlined } from '@mui/icons-material'
|
| Línea 5... |
Línea 5... |
| 5 |
|
5 |
|
| 6 |
import { withReactions } from '@hocs'
|
6 |
import { withReactions } from '@hocs'
|
| 7 |
import { feedTypes } from '@app/redux/feed/feed.types'
|
7 |
import { feedTypes } from '@store/feed/feed.types'
|
| 8 |
import { openShareModal } from '@app/redux/share-modal/shareModal.actions'
|
8 |
import { shareModalTypes } from '@store/share-modal/shareModal.types'
|
| 9 |
import { shareModalTypes } from '@app/redux/share-modal/shareModal.types'
|
- |
|
| Línea 10... |
Línea 9... |
| 10 |
import withExternalShare from '../linkedin/withExternalShare'
|
9 |
import { openShareModal } from '@store/share-modal/shareModal.actions'
|
| 11 |
|
10 |
|
| 12 |
import Widget from '@components/UI/Widget'
|
11 |
import Widget from '@components/UI/Widget'
|
| - |
|
12 |
import Comments from '../linkedin/comments/comments'
|
| Línea 13... |
Línea 13... |
| 13 |
import Comments from '../linkedin/comments/comments'
|
13 |
import Reactions from '../reactions/reactions'
|
| 14 |
import Reactions from '../reactions/reactions'
|
14 |
import withExternalShare from '../linkedin/withExternalShare'
|
| 15 |
|
15 |
|
| 16 |
const Row = styled(Box)(({ theme }) => ({
|
16 |
const Row = styled(Box)(({ theme }) => ({
|