Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2838 Rev 3259
Línea 2... Línea 2...
2
import EmptySection from '@components/UI/EmptySection'
2
import EmptySection from '@components/UI/EmptySection'
3
import React from 'react'
3
import React from 'react'
Línea 4... Línea 4...
4
 
4
 
5
const FeedList = ({ feeds = [] }) => {
5
const FeedList = ({ feeds = [] }) => {
6
  if (!feeds.length) {
6
  if (!feeds.length) {
7
    return <EmptySection message='No hay publicaciones' />
7
    return <EmptySection message='No hay publicaciones para mostrar' />
Línea 8... Línea 8...
8
  }
8
  }
9
 
9
 
10
  return feeds.map(({ feed_unique, feed_uuid }) => (
10
  return feeds.map(({ feed_unique, feed_uuid }) => (