owncast/web/components/chat/ChatSystemMessage.tsx

12 lines
317 B
TypeScript
Raw Normal View History

2022-05-12 08:31:31 +02:00
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable react/no-unused-prop-types */
import { ChatMessage } from '../../interfaces/chat-message.model';
interface Props {
message: ChatMessage;
}
export default function ChatSystemMessage(props: Props) {
return <div>Component goes here</div>;
}