Add chat system message component. For #1998

This commit is contained in:
Gabe Kangas
2022-07-15 13:15:20 -07:00
parent 2c8621c873
commit f4fb7a1d41
4 changed files with 26 additions and 12 deletions

View File

@ -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>;
}