Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1657 Rev 1769
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
-
 
2
import { CircularProgress } from '@mui/material'
Línea 2... Línea 3...
2
 
3
 
3
import Feed from '../feed-template/Feed'
4
import Feed from '../feed-template/Feed'
4
import EmptySection from '@app/components/UI/EmptySection'
-
 
Línea 5... Línea 5...
5
import Spinner from '@app/components/UI/Spinner'
5
import EmptySection from '@app/components/UI/EmptySection'
6
 
6
 
7
const FeedList = ({ feeds = [], loading = false }) => {
7
const FeedList = ({ feeds = [], loading = false }) => {
8
  if (loading) {
8
  if (loading) {
Línea 9... Línea 9...
9
    return <Spinner />
9
    return <CircularProgress />
10
  }
10
  }
11
 
11