Rev 2838 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import Feed from '@components/dashboard/feed/feed'import EmptySection from '@components/UI/EmptySection'import React from 'react'const FeedList = ({ feeds = [] }) => {if (!feeds.length) {return <EmptySection message='No hay publicaciones para mostrar' />}return feeds.map(({ feed_unique, feed_uuid }) => (<Feed key={feed_uuid} id={feed_unique} />))}export default FeedList