mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
/* 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>;
|
|
}
|