Add style and story for generic chat action message

This commit is contained in:
Gabe Kangas
2022-07-14 20:09:40 -07:00
parent 101359cfc3
commit b490903a35
2 changed files with 4 additions and 14 deletions

View File

@@ -1,11 +0,0 @@
/* 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 }} />;
}