mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 11:56:57 +08:00
Add chat system message component. For #1998
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
import s from './ChatSystemMessage.module.scss';
|
||||
|
||||
interface Props {
|
||||
message: string;
|
||||
}
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export default function ChatSystemMessage({ message }: Props) {
|
||||
return <div className={s.chatSystemMessage}>{message}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user