Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15279 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15279 Rev 16794
Línea 1... Línea 1...
1
import React from 'react'
1
import React, { useEffect } from 'react'
2
import { useState } from 'react'
2
import { useState } from 'react'
3
import SearchLocationInput from '../../../shared/SearchLocationInput'
3
import SearchLocationInput from '../../../shared/SearchLocationInput'
4
import { addNotification } from '../../../redux/notification/notification.actions'
4
import { addNotification } from '../../../redux/notification/notification.actions'
5
import axios from 'axios'
5
import axios from 'axios'
6
import { useDispatch } from 'react-redux'
6
import { useDispatch } from 'react-redux'
7
import { Modal } from 'react-bootstrap'
7
import { Modal } from 'react-bootstrap'
Línea 8... Línea 8...
8
 
8
 
9
const LocationModal = ({
9
const LocationModal = ({
10
	closeModal,
10
  closeModal,
11
	dataLink,
11
  dataLink,
12
	googleApiKey,
12
  googleApiKey,
13
	defaultData = '',
13
  defaultData = '',
14
	onComplete = function () { }
14
  onComplete = function () {}
115
	)
127
  )
116
}
-
 
117
export default LocationModal
128
}
-
 
129
export default LocationModal