mirror of
https://github.com/owncast/owncast.git
synced 2024-12-23 17:50:38 +03:00
10 lines
280 B
TypeScript
10 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>;
|
||
|
}
|