Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1437 Rev 1457
Línea 1... Línea 1...
1
import React, { useState } from 'react'
1
import React, { useState } from 'react'
-
 
2
import { useDispatch, useSelector } from 'react-redux'
-
 
3
import { useForm } from 'react-hook-form'
2
import Datetime from 'react-datetime'
4
import Datetime from 'react-datetime'
-
 
5
 
3
import { axios } from '../../utils'
6
import { axios } from '../../utils'
4
import { Modal } from 'react-bootstrap'
-
 
5
import { useForm } from 'react-hook-form'
-
 
6
import { useDispatch, useSelector } from 'react-redux'
-
 
7
import { addNotification } from 'store/notification/notification.actions'
7
import { addNotification } from 'store/notification/notification.actions'
8
 
-
 
9
import useFetchHelper from 'hooks/useFetchHelper'
8
import useFetchHelper from 'hooks/useFetchHelper'
-
 
9
 
-
 
10
import Modal from 'components/UI/modal/Modal'
10
import FormErrorFeedback from 'components/UI/form/FormErrorFeedback'
11
import FormErrorFeedback from 'components/UI/form/FormErrorFeedback'
-
 
12
 
11
import 'react-datetime/css/react-datetime.css'
13
import 'react-datetime/css/react-datetime.css'
Línea 12... Línea 14...
12
 
14
 
13
const ConferenceModal = ({
15
const ConferenceModal = ({
14
  show = false,
16
  show = false,
Línea 89... Línea 91...
89
  const generatePassword = () => {
91
  const generatePassword = () => {
90
    return Math.random().toString(36).slice(-6)
92
    return Math.random().toString(36).slice(-6)
91
  }
93
  }
Línea 92... Línea 94...
92
 
94
 
208
      </Modal.Body>
209
      </div>
209
    </Modal>
210
    </Modal>
210
  )
211
  )
Línea 211... Línea 212...
211
}
212
}