Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2393 Rev 2864
Línea 1... Línea 1...
1
import React, { useState } from 'react'
1
import React, { useState } from 'react'
2
import { useSelector } from 'react-redux'
2
import { useSelector } from 'react-redux'
3
import { Box } from '@mui/material'
3
import { Box, Typography } from '@mui/material'
4
import { SendOutlined, ChatOutlined } from '@mui/icons-material'
4
import { SendOutlined, ChatOutlined } from '@mui/icons-material'
Línea -... Línea 5...
-
 
5
 
-
 
6
import { parse } from '@utils'
5
 
7
 
6
import withExternalShare from '../dashboard/linkedin/withExternalShare'
8
import withExternalShare from '../dashboard/linkedin/withExternalShare'
Línea 7... Línea 9...
7
import withReactions from '@app/hocs/withReaction'
9
import withReactions from '@app/hocs/withReaction'
8
 
-
 
9
import Button from '../UI/buttons/Buttons'
10
 
10
import Paraphrase from '../UI/Paraphrase'
11
import Button from '../UI/buttons/Buttons'
Línea 11... Línea 12...
11
import PostFile from './PostFile'
12
import PostFile from './PostFile'
12
import FeedReactions from '../dashboard/linkedin/feed/FeedReactions'
13
import FeedReactions from '../dashboard/linkedin/feed/FeedReactions'
Línea 54... Línea 55...
54
      <Widget.Media src={image} alt={title} height={450} />
55
      <Widget.Media src={image} alt={title} height={450} />
Línea 55... Línea 56...
55
 
56
 
56
      <Widget.Body>
57
      <Widget.Body>
Línea 57... Línea 58...
57
        <h2>{title}</h2>
58
        <h2>{title}</h2>
Línea 58... Línea 59...
58
 
59
 
59
        <Paraphrase>{description}</Paraphrase>
60
        <Typography>{parse(description)}</Typography>
Línea 60... Línea 61...
60
 
61