Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16272 Rev 16273
Línea 1... Línea -...
1
import React, { useState, useEffect } from "react";
-
 
2
import { axios } from "../../../../utils";
-
 
3
import { useDispatch } from "react-redux";
1
import React from "react";
4
import { useForm } from "react-hook-form";
-
 
5
import { Modal } from "@mui/material";
2
import { Modal } from "@mui/material";
6
import Datetime from "react-datetime";
-
 
7
 
-
 
8
import FormErrorFeedback from "../../../../shared/form-error-feedback/FormErrorFeedback";
-
 
Línea 9... Línea 3...
9
 
3
 
10
const ConferenceModal = ({
4
const ConferenceModal = ({
11
  isShow = false,
5
  isShow = false,
12
  timezones = {},
6
  timezones = {},
Línea 45... Línea 39...
45
            <label htmlFor="timezone">Zona horaria</label>
39
            <label htmlFor="timezone">Zona horaria</label>
46
            <select className="form-control" name="timezone">
40
            <select className="form-control" name="timezone">
47
              <option value="" hidden>
41
              <option value="" hidden>
48
                Zona horaria
42
                Zona horaria
49
              </option>
43
              </option>
50
              {Object.entries(timezones).map(([key, value]) => (
-
 
51
                <option value={key} key={key}>
-
 
52
                  {value}
-
 
53
                </option>
-
 
54
              ))}
-
 
55
            </select>
44
            </select>
56
          </div>
45
          </div>
57
          <div className="form-group">
46
          <div className="form-group">
58
            <label htmlFor="timezone">Duración</label>
47
            <label htmlFor="timezone">Duración</label>
59
            <select className="form-control" name="duration">
48
            <select className="form-control" name="duration">