Add message block tests

This commit is contained in:
2025-11-18 22:48:52 -05:00
parent 91c8169e97
commit cfe6fc1a4e
26 changed files with 1873 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
import type { MessageBlockProps } from "$/types/MessageTypes";
import clsx from "clsx";
import MessageBlock from "./MessageBlock";
export default function PrimaryMessageBlock(props: MessageBlockProps){
const {
className,
...messageProps
} = props;
return (
<MessageBlock
data-testid="mattrixwv-primary-message-block"
{...messageProps}
className={clsx(
className,
"bg-blue-200 text-blue-600"
)}
/>
);
}