mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
// MessageText is the literal-text primitive for user and steering content; assistant output uses MarkdownText.
|
|
|
|
import css from './MessageText.module.css'
|
|
|
|
export function MessageText({ text }: { text: string }) {
|
|
return <div className={css.text}>{text}</div>
|
|
}
|