Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3435 Rev 3437
Línea 23... Línea 23...
23
  const handleSearch = debounce((e) => setParam('search', e.target.value));
23
  const handleSearch = debounce((e) => setParam('search', e.target.value));
Línea 24... Línea 24...
24
 
24
 
25
  return (
25
  return (
26
    <>
26
    <>
-
 
27
      <TitleSection title={labels.my_profiles} onAdd={toggleModal} addLabel={labels.add} />
-
 
28
      <Input
27
      <TitleSection title={labels.my_profiles} onAdd={toggleModal} addLabel={labels.add} />
29
        icon={<Search />}
-
 
30
        onChange={handleSearch}
-
 
31
        placeholder={labels.search}
-
 
32
        variant='search'
-
 
33
        color='secondary'
28
      <Input icon={<Search />} onChange={handleSearch} variant='search' color='secondary' />
34
      />
29
      <MyProfilesList profiles={data} loading={isLoading} onComplete={refetch} />
35
      <MyProfilesList profiles={data} loading={isLoading} onComplete={refetch} />
30
      <AddProfileModal show={isShowAddModal} getProfiles={() => refetch()} onHide={toggleModal} />
36
      <AddProfileModal show={isShowAddModal} getProfiles={() => refetch()} onHide={toggleModal} />
31
    </>
37
    </>
32
  );
38
  );