mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { ChatMessage } from '../../interfaces/chat-message.model';
|
|
|
|
interface Props {
|
|
message: ChatMessage;
|
|
}
|
|
|
|
export default function ChatSystemMessage(props: Props) {
|
|
return <div>Component goes here</div>;
|
|
}
|