2 changed files with 17 additions and 0 deletions
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
.chatAction { |
||||
padding: 5px; |
||||
text-align: center; |
||||
} |
||||
@ -0,0 +1,13 @@
@@ -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} />; |
||||
} |
||||
Loading…
Reference in new issue