Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 12149 Rev 16670
Línea 5... Línea 5...
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'
Línea 8... Línea 8...
8
 
8
 
-
 
9
const FeedView = ({ timeLineUrl }) => {
Línea -... Línea 10...
-
 
10
  const dispatch = useDispatch()
9
const FeedView = ({ timeLineUrl }) => {
11
 
-
 
12
  useEffect(() => {
Línea 10... Línea -...
10
 
-
 
11
	const dispatch = useDispatch()
-
 
12
 
-
 
13
	useEffect(() => {
-
 
14
		dispatch(setTimelineUrl(timeLineUrl))
13
    dispatch(setTimelineUrl(timeLineUrl))
15
	}, [])
14
  }, [])
16
 
15
 
17
	return (
16
  return (
18
		<ContentTitle title="Publicaciones">
-
 
19
			<div className="row g-4">
17
    <ContentTitle title="Publicaciones">
20
				<div className="col-lg-3">
18
      <div className="row g-4">
21
				</div>
19
        <div className="col-lg-3"></div>
22
				<div className="col-md-8 col-lg-6 vstack gap-4">
20
        <div className="col-md-8 col-lg-6 vstack gap-4">
23
					<FeedShare post_url="/feeds/add" />
21
          <FeedShare post_url="/feeds/add" />
24
					<FeedSection timeLineUrl={timeLineUrl} />
22
          <FeedSection timeLineUrl={timeLineUrl} />
25
				</div>
23
        </div>
26
				<div className="col-lg-3"></div>
24
        <div className="col-lg-3"></div>
27
			</div>
25
      </div>
28
			<ShareModal />
26
      <ShareModal />
29
		</ContentTitle>
-
 
30
	)
27
    </ContentTitle>
-
 
28
  )