Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6336 Rev 6340
Línea 5... Línea 5...
5
import { AddRounded } from '@mui/icons-material'
5
import { AddRounded } from '@mui/icons-material'
6
import { useDispatch } from 'react-redux'
6
import { useDispatch } from 'react-redux'
7
import { addNotification } from '../../../redux/notification/notification.actions'
7
import { addNotification } from '../../../redux/notification/notification.actions'
Línea 8... Línea 8...
8
 
8
 
-
 
9
const AddMember = ({ group }) => {
9
const AddMember = ({ group }) => {
10
  const { url_add_user_to_group, url_get_contacts_availables_for_group } = group
10
  const [contacts, setContacts] = useState([])
11
  const [contacts, setContacts] = useState([])
11
  const [loading, setLoading] = useState(false)
12
  const [loading, setLoading] = useState(false)
12
  const dispatch = useDispatch()
-
 
Línea 13... Línea 13...
13
  const { url_add_user_to_group, url_get_contacts_availables_for_group } = group
13
  const dispatch = useDispatch()
14
 
14
 
15
  const getContacts = async () => {
15
  const getContacts = async () => {
16
    setLoading(true)
16
    setLoading(true)