2022-05-26 22:52:04 +02:00
|
|
|
/* eslint-disable react/no-danger */
|
2022-04-28 08:19:20 +02:00
|
|
|
interface Props {
|
2022-05-26 22:52:04 +02:00
|
|
|
body: string;
|
2022-04-28 08:19:20 +02:00
|
|
|
}
|
|
|
|
|
2022-05-12 08:31:31 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2022-05-26 22:52:04 +02:00
|
|
|
export default function ChatActionMessage(props: Props) {
|
|
|
|
const { body } = props;
|
|
|
|
|
|
|
|
return <div dangerouslySetInnerHTML={{ __html: body }} />;
|
2022-04-28 08:19:20 +02:00
|
|
|
}
|