owncast/web/components/chat/ChatSystemMessage.tsx
2022-05-11 23:31:31 -07:00

11 lines
317 B
TypeScript

/* 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>;
}