Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16670 Rev 16736
Línea 3... Línea 3...
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 FeedSection from '../components/FeedSection'
6
import FeedSection from '../components/FeedSection'
7
import FeedShare from '../components/FeedShare'
7
import FeedShare from '../components/FeedShare'
-
 
8
import styled from 'styled-components'
-
 
9
 
-
 
10
const StyledSection = styled.div`
-
 
11
  display: flex;
-
 
12
  flex-direction: column;
-
 
13
  gap: 1rem;
-
 
14
  flex: 1;
-
 
15
`
Línea 8... Línea 16...
8
 
16
 
9
const FeedView = ({ timeLineUrl }) => {
17
const FeedView = ({ timeLineUrl }) => {
Línea 10... Línea 18...
10
  const dispatch = useDispatch()
18
  const dispatch = useDispatch()
Línea 15... Línea 23...
15
 
23
 
16
  return (
24
  return (
17
    <ContentTitle title="Publicaciones">
25
    <ContentTitle title="Publicaciones">
18
      <div className="row g-4">
26
      <div className="row g-4">
19
        <div className="col-lg-3"></div>
27
        <div className="col-lg-3"></div>
20
        <div className="col-md-8 col-lg-6 vstack gap-4">
28
        <StyledSection>
21
          <FeedShare post_url="/feeds/add" />
29
          <FeedShare post_url="/feeds/add" />
22
          <FeedSection timeLineUrl={timeLineUrl} />
30
          <FeedSection timeLineUrl={timeLineUrl} />
23
        </div>
31
        </StyledSection>
24
        <div className="col-lg-3"></div>
32
        <div className="col-lg-3"></div>
25
      </div>
33
      </div>
26
      <ShareModal />
34
      <ShareModal />
27
    </ContentTitle>
35
    </ContentTitle>