Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6619 Rev 6621
Línea 13... Línea 13...
13
const isDashboard = window.location.pathname.includes('dashboard')
13
const isDashboard = window.location.pathname.includes('dashboard')
14
const isMobile = window.innerWidth < 768
14
const isMobile = window.innerWidth < 768
Línea 15... Línea 15...
15
 
15
 
16
const FeedSection = ({ feed, image }) => {
16
const FeedSection = ({ feed, image }) => {
17
  const { allFeeds, timelineUrl, pages, currentPage, loading } = useSelector(
17
  const { allFeeds, timelineUrl, pages, currentPage, loading } = useSelector(
18
    (state) => state.feed
18
    ({ feed }) => feed
-
 
19
  )
19
  )
20
  const labels = useSelector(({ intl }) => intl.labels)
20
  const dispatch = useDispatch()
-
 
Línea 21... Línea 21...
21
  const labels = useSelector((state) => state.labels)
21
  const dispatch = useDispatch()
22
 
22
 
Línea 23... Línea 23...
23
  const fetchSpecificFeed = () =>
23
  const fetchSpecificFeed = () =>