mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 23:24:29 +03:00
9 lines
280 B
TypeScript
9 lines
280 B
TypeScript
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>;
|
|
}
|