Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2521 Rev 2802
Línea 16... Línea 16...
16
  const [questionsCategories, setQuestionsCategories] = useState([])
16
  const [questionsCategories, setQuestionsCategories] = useState([])
17
  const [currentCategories, setCurrentCategories] = useState([])
17
  const [currentCategories, setCurrentCategories] = useState([])
18
  const labels = useSelector(({ intl }) => intl.labels)
18
  const labels = useSelector(({ intl }) => intl.labels)
19
  const dispatch = useDispatch()
19
  const dispatch = useDispatch()
Línea -... Línea 20...
-
 
20
 
-
 
21
  const {
-
 
22
    register,
-
 
23
    handleSubmit,
-
 
24
    setValue,
20
 
25
    watch,
-
 
26
    formState: { errors }
21
  const { register, handleSubmit, setValue, errors, watch } = useForm()
27
  } = useForm()
Línea 22... Línea 28...
22
  const watchedDescription = watch('description')
28
  const watchedDescription = watch('description')
23
 
29