| Línea 1... |
Línea -... |
| 1 |
/* eslint-disable camelcase */
|
- |
|
| 2 |
/* eslint-disable react/prop-types */
|
- |
|
| 3 |
import React, { useEffect, useRef, useState } from 'react'
|
1 |
import React, { useEffect, useRef, useState } from 'react'
|
| 4 |
import { axios } from '../../../utils'
|
2 |
import { axios } from '../../../utils'
|
| 5 |
import { Modal } from 'react-bootstrap'
|
3 |
import { Modal } from 'react-bootstrap'
|
| 6 |
import { useForm } from 'react-hook-form'
|
4 |
import { useForm } from 'react-hook-form'
|
| 7 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
- |
|
| 8 |
import { useDispatch } from 'react-redux'
|
5 |
import { useDispatch } from 'react-redux'
|
| - |
|
6 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
| 9 |
import styled from 'styled-components'
|
7 |
import styled from 'styled-components'
|
| 10 |
import Datetime from 'react-datetime'
|
8 |
import Datetime from 'react-datetime'
|
| 11 |
import SearchIcon from '@mui/icons-material/Search'
|
9 |
import SearchIcon from '@mui/icons-material/Search'
|
| - |
|
10 |
|
| - |
|
11 |
import TextBox from '../../../components/chat/TextBox'
|
| - |
|
12 |
import ChatList from '../../../components/chat/ChatList'
|
| 12 |
import ConfirmModal from '../../../shared/confirm-modal/ConfirmModal'
|
13 |
import ConfirmModal from '../../../shared/confirm-modal/ConfirmModal'
|
| 13 |
import EmptySection from '../../../shared/empty-section/EmptySection'
|
14 |
import EmptySection from '../../../shared/empty-section/EmptySection'
|
| 14 |
import FormErrorFeedback from '../../../shared/form-error-feedback/FormErrorFeedback'
|
15 |
import FormErrorFeedback from '../../../shared/form-error-feedback/FormErrorFeedback'
|
| Línea 15... |
Línea -... |
| 15 |
|
- |
|
| 16 |
import ChatList from '../../../components/chat/ChatList'
|
- |
|
| 17 |
import TextBox from '../../../components/chat/TextBox'
|
16 |
|
| Línea 18... |
Línea 17... |
| 18 |
import 'react-datetime/css/react-datetime.css'
|
17 |
import 'react-datetime/css/react-datetime.css'
|
| 19 |
|
18 |
|
| 20 |
const StyledShowOptions = styled.div`
|
19 |
const StyledShowOptions = styled.div`
|