You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
359 B
13 lines
359 B
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} />; |
|
}
|
|
|