| 4 | import { twMerge } from "tailwind-merge"; |
| 5 | |
| 6 | interface MessageProps { |
| 7 | data: MessageType; |
| 8 | markdown?: ComponentProps<typeof Streamdown>; |
| 9 | } |
| 10 | |
| 11 | export const Message = ({ data, markdown }: MessageProps) => ( |
| 12 | <div |
nothing calls this directly
no outgoing calls
no test coverage detected