Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2885 Rev 2899
Línea 10... Línea 10...
10
import Button from '@components/UI/buttons/Buttons'
10
import Button from '@components/UI/buttons/Buttons'
11
import CommentForm from '../dashboard/linkedin/comments/comment-form'
11
import CommentForm from '../dashboard/linkedin/comments/comment-form'
12
import CommentsList from '../dashboard/linkedin/comments/comment-list'
12
import CommentsList from '../dashboard/linkedin/comments/comment-list'
13
import Widget from '../UI/Widget'
13
import Widget from '../UI/Widget'
14
import PostFile from './PostFile'
14
import PostFile from './PostFile'
15
import FeedReactions from '@components/dashboard/linkedin/feed/FeedReactions'
15
import Reactions from '@components/dashboard/reactions/reactions'
Línea 16... Línea 16...
16
 
16
 
17
function PostCard({
17
function PostCard({
18
  post,
18
  post,
19
  addComment,
19
  addComment,
Línea 66... Línea 66...
66
          justifyContent: 'space-between',
66
          justifyContent: 'space-between',
67
          alignItems: 'center',
67
          alignItems: 'center',
68
          padding: '0 0.5rem'
68
          padding: '0 0.5rem'
69
        }}
69
        }}
70
      >
70
      >
71
        <FeedReactions reactions={reactions} reactionsUrl={reactions_url} />
71
        <Reactions reactions={reactions} reactionsUrl={reactions_url} />
Línea 72... Línea 72...
72
 
72
 
73
        {total_share_external ? (
73
        {total_share_external ? (
74
          <span>{`${total_share_external} ${labels.sends?.toLowerCase()}`}</span>
74
          <span>{`${total_share_external} ${labels.sends?.toLowerCase()}`}</span>
75
        ) : null}
75
        ) : null}