Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3949 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3949 Rev 5115
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React from 'react'
2
import React from 'react'
3
import SharedContent from './SharedContent';
3
import SharedContent from './SharedContent'
4
import FeedDescription from './FeedDescription';
4
import FeedDescription from './FeedDescription'
Línea 5... Línea 5...
5
 
5
 
6
const FeedContent = ({
6
const FeedContent = ({
7
    showDescription = true,
7
  showDescription = true,
8
    ownerFileImage,
8
  ownerFileImage,
9
    ownerFileVideo,
9
  ownerFileVideo,
10
    ownerFileImagePreview,
10
  ownerFileImagePreview,
11
    ownerFileDocument,
11
  ownerFileDocument,
12
    ownerDescription,
12
  ownerDescription,
13
    isShare,
13
  isShare,
14
    sharedItem
14
  sharedItem
15
}) => {
-
 
16
 
15
}) => {
17
    return (
16
  return (
18
        <div className="job_descp">
17
        <div className="job_descp">
19
            {showDescription &&
18
            {showDescription &&
20
                <FeedDescription ownerDescription={ownerDescription} />
19
                <FeedDescription ownerDescription={ownerDescription} />
21
            }
20
            }
Línea 46... Línea 45...
46
                    fileImage={sharedItem.file_image}
45
                    fileImage={sharedItem.file_image}
47
                    fileDocument={sharedItem.file_document}
46
                    fileDocument={sharedItem.file_document}
48
                />
47
                />
49
            }
48
            }
50
        </div>
49
        </div>
51
    )
50
  )
52
}
51
}
Línea 53... Línea -...
53
 
-
 
54
export default FeedContent
52
 
-
 
53
export default FeedContent