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.
12 lines
404 B
12 lines
404 B
import { FC } from 'react'; |
|
import styles from './ChatActionMessage.module.scss'; |
|
|
|
/* eslint-disable react/no-danger */ |
|
export type ChatActionMessageProps = { |
|
body: string; |
|
}; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const ChatActionMessage: FC<ChatActionMessageProps> = ({ body }) => ( |
|
<div dangerouslySetInnerHTML={{ __html: body }} className={styles.chatAction} /> |
|
);
|
|
|