Action message component
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
.chatAction {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
13
web/components/chat/ChatAction/ChatActionMessage.tsx
Normal file
13
web/components/chat/ChatAction/ChatActionMessage.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import s from './ChatActionMessage.module.scss';
|
||||
|
||||
/* eslint-disable react/no-danger */
|
||||
interface Props {
|
||||
body: string;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export default function ChatActionMessage(props: Props) {
|
||||
const { body } = props;
|
||||
|
||||
return <div dangerouslySetInnerHTML={{ __html: body }} className={s.chatAction} />;
|
||||
}
|
||||
Reference in New Issue
Block a user