Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6968 Rev 6976
Línea 80... Línea 80...
80
 
80
 
81
  return (
81
  return (
82
    <>
82
    <>
83
      <Container>
83
      <Container>
-
 
84
        <Row>
84
        <Row>
85
          <Col
-
 
86
            md="4"
-
 
87
            className={currentConversation ? 'd-sm-none d-md-flex' : 'd-flex'}
85
          <Col md="4">
88
          >
86
            <Contacts>
89
            <Contacts>
87
              <Contacts.Header options={options.current}>
90
              <Contacts.Header options={options.current}>
88
                <h1>Inmail</h1>
91
                <h1>Inmail</h1>
Línea 102... Línea 105...
102
                onChange={changeConversation}
105
                onChange={changeConversation}
103
                currentConversation={currentConversation}
106
                currentConversation={currentConversation}
104
              />
107
              />
105
            </Contacts>
108
            </Contacts>
106
          </Col>
109
          </Col>
-
 
110
          <Col
107
          <Col md="8" className="d-flex">
111
            md="8"
-
 
112
            className={currentConversation ? 'd-flex' : 'd-sm-none d-md-flex'}
-
 
113
          >
108
            {currentConversation ? (
114
            {currentConversation ? (
109
              <InmailChat
115
              <InmailChat
110
                conversation={currentConversation}
116
                conversation={currentConversation}
111
                changeConversation={changeConversation}
117
                changeConversation={changeConversation}
112
              />
118
              />