Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5353 Rev 5354
Línea 10... Línea 10...
10
// Components
10
// Components
11
import Spinner from '../../../shared/loading-spinner/Spinner'
11
import Spinner from '../../../shared/loading-spinner/Spinner'
Línea 12... Línea 12...
12
 
12
 
13
const ContactsModal = ({ show }) => {
13
const ContactsModal = ({ show }) => {
14
  const [isShow, setIsShow] = useState(show)
14
  const [isShow, setIsShow] = useState(show)
15
  const [contacts, setContacts] = useState({})
15
  const [contacts, setContacts] = useState([])
16
  const [loading, setLoading] = useState(false)
16
  const [loading, setLoading] = useState(false)
Línea 17... Línea 17...
17
  const dispatch = useDispatch()
17
  const dispatch = useDispatch()
18
 
18