Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1773 Rev 1800
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
Línea 2... Línea 2...
2
 
2
 
3
import Feed from '../feed-template/Feed'
3
import Feed from '../feed-template/Feed'
4
import EmptySection from '@app/components/UI/EmptySection'
-
 
5
import Spinner from '@app/components/UI/Spinner'
-
 
6
 
-
 
7
const FeedList = ({ feeds = [], loading = false }) => {
-
 
8
  if (loading) {
-
 
9
    return <Spinner />
-
 
Línea -... Línea 4...
-
 
4
import EmptySection from '@app/components/UI/EmptySection'
10
  }
5
 
11
 
6
const FeedList = ({ feeds = [] }) => {
12
  if (!feeds.length) {
7
  if (!feeds.length) {
Línea 13... Línea 8...
13
    return <EmptySection message='No hay publicaciones' />
8
    return <EmptySection message='No hay publicaciones' />