Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1849 Rev 1852
Línea 4... Línea 4...
4
 
4
 
5
import Modal from 'components/UI/modal/Modal'
5
import Modal from 'components/UI/modal/Modal'
6
import UbicationInput from 'components/UI/inputs/UbicationInput'
6
import UbicationInput from 'components/UI/inputs/UbicationInput'
Línea 7... Línea 7...
7
import FormErrorFeedback from 'components/UI/form/FormErrorFeedback'
7
import FormErrorFeedback from 'components/UI/form/FormErrorFeedback'
-
 
8
 
-
 
9
const LocationModal = ({
-
 
10
  show = false,
-
 
11
  onConfirm = () => {},
8
 
12
  onClose = () => {}
Línea 9... Línea 13...
9
const LocationModal = ({ show, onConfirm, onClose }) => {
13
}) => {
10
  const labels = useSelector(({ intl }) => intl.labels)
14
  const labels = useSelector(({ intl }) => intl.labels)
11
 
15