Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2880 Rev 2886
Línea 25... Línea 25...
25
  return (
25
  return (
26
    <>
26
    <>
27
      <TitleSection title={labels.first_level_persons} />
27
      <TitleSection title={labels.first_level_persons} />
28
      <Input icon={<Search />} onChange={handleSearch} variant='search' />
28
      <Input icon={<Search />} onChange={handleSearch} variant='search' />
29
      <MyConnectionsList
29
      <MyConnectionsList
30
        connections={data.current.items}
30
        connections={data.current?.items}
31
        loading={isLoading}
31
        loading={isLoading}
32
        onComplete={refetch}
32
        onComplete={refetch}
33
      />
33
      />
34
      <PaginationComponent
34
      <PaginationComponent
35
        isRow
35
        isRow
36
        pages={data.total.pages}
36
        pages={data.total?.pages}
37
        currentActivePage={data.current.page}
37
        currentActivePage={data.current?.page}
38
        onChangePage={(page) => setParam('page', page)}
38
        onChangePage={(page) => setParam('page', page)}
39
      />
39
      />
40
    </>
40
    </>
41
  )
41
  )
42
}
42
}