UNPKG

z-react-ui

Version:

z-react-ui,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

10 lines (9 loc) 264 B
import React from 'react'; import { ContentType } from '@/_utils/chat'; interface ChatItemProps { layout: 'left' | 'right' | 'center'; chatItem: any; contentType: ContentType; } declare const ChatItem: React.FC<ChatItemProps>; export default ChatItem;