Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16268 Rev 16274
Línea 270... Línea 270...
270
  const options = [
270
  const options = [
271
    { label: "Crear Conferencia", action: toggleConferenceModal },
271
    { label: "Crear Conferencia", action: toggleConferenceModal },
272
  ];
272
  ];
Línea 273... Línea 273...
273
 
273
 
274
  return (
-
 
275
    <>
274
  return (
276
      <div className={styles.chat_header}>
275
    <div className={styles.chat_header}>
277
        <h2>{name}</h2>
276
      <h2>{name}</h2>
278
        <Header.Options options={options} />
-
 
279
      </div>
277
      <Header.Options options={options} />
280
      <ConferenceModal
278
      <ConferenceModal
281
        show={isShowConferenceModal}
-
 
282
        zoomUrl={conferenceUrl}
279
        isShow={isShowConferenceModal}
283
        onCreate={() => toggleConferenceModal()}
280
        onClose={toggleConferenceModal}
284
      />
281
      />
285
    </>
282
    </div>
286
  );
283
  );
Línea 287... Línea 284...
287
};
284
};
288
 
285