#Thread.MessageList
#MessageList
| 属性 | 说明 | 类型 | 默认值 |
|---|---|---|---|
| messages | Messages | MessageType[] (必填) | - |
| children | Children to be rendered | (props: Omit<MessageItemProps, "children">) => ReactElement<unknown, string | JSXElementConstructor<any>> (必填) | - |
| vListProps | Virtua props | Omit<VListProps<unknown>, "children" | "data"> | - |
import { MessageList } from '@/react';
function App() {
return (
<MessageList content={`
[Arya](https://markdown.lovejade.cn/?ref=markdown.lovejade.cn),是一款基贴`} />
);
}
export default App;