Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16748 Rev 16750
Línea 1... Línea 1...
1
import React, { useEffect } from 'react'
1
import React, { useEffect } from 'react'
2
import { useDispatch } from 'react-redux'
2
import { useDispatch } from 'react-redux'
3
import { setTimelineUrl } from '../../redux/feed/feed.actions'
3
import { setTimelineUrl } from '../../redux/feed/feed.actions'
4
import ContentTitle from '../../shared/ContentTitle'
4
import ContentTitle from '../../shared/ContentTitle'
5
import ShareModal from '../../shared/ShareModal'
5
import ShareModal from '../../shared/ShareModal'
-
 
6
import SurveyModal from '../components/survey/SurveyModal'
6
import FeedSection from '../components/FeedSection'
7
import FeedSection from '../components/FeedSection'
7
import FeedShare from '../components/FeedShare'
8
import FeedShare from '../components/FeedShare'
8
import styled from 'styled-components'
9
import styled from 'styled-components'
Línea 9... Línea 10...
9
 
10
 
Línea 30... Línea 31...
30
          <FeedSection timeLineUrl={timeLineUrl} />
31
          <FeedSection timeLineUrl={timeLineUrl} />
31
        </StyledSection>
32
        </StyledSection>
32
        <div className="col-lg-3"></div>
33
        <div className="col-lg-3"></div>
33
      </div>
34
      </div>
34
      <ShareModal />
35
      <ShareModal />
-
 
36
      <SurveyModal />
35
    </ContentTitle>
37
    </ContentTitle>
36
  )
38
  )
37
}
39
}
38
export default FeedView
40
export default FeedView