mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
import { ChatMessage } from '../../interfaces/chat-message.model';
|
|
|
|
interface Props {
|
|
// eslint-disable-next-line react/no-unused-prop-types
|
|
message: ChatMessage;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export default function ChatSystemMessage(props: Props) {
|
|
return <div>Component goes here</div>;
|
|
}
|