Fixed import and lint-errors

This commit is contained in:
t1enne
2022-05-22 15:05:40 +02:00
parent 018ee135b2
commit b6dd441107
3 changed files with 6 additions and 5 deletions

View File

@@ -2,10 +2,10 @@ import { Spin } from 'antd';
import { Virtuoso } from 'react-virtuoso';
import { useRef } from 'react';
import { LoadingOutlined } from '@ant-design/icons';
import { ChatMessage } from '/interfaces/chat-message.model';
import { ChatState } from '/interfaces/application-state';
import { ChatMessage } from '../../../interfaces/chat-message.model';
import { ChatState } from '../../../interfaces/application-state';
import { MessageType } from '../../../interfaces/socket-events';
import ChatUserMessage from '../ChatUserMessage';
import { MessageType } from '/interfaces/socket-events';
import s from './ChatContainer.module.scss';
interface Props {

View File

@@ -0,0 +1,2 @@
export { default as ChatContainer } from './ChatContainer';
export { default as ChatTextField } from './ChatTextField/ChatTextField';