Fix web project build errors
This commit is contained in:
11
web/components/chat/ChatSocialMessage.tsx
Normal file
11
web/components/chat/ChatSocialMessage.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
/* eslint-disable react/no-unused-prop-types */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||||
|
||||
interface Props {
|
||||
message: ChatMessage;
|
||||
}
|
||||
|
||||
export default function ChatSocialMessage(props: Props) {
|
||||
return <div>Component goes here</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user