- 新增 reportService API 服务 - 新增 ReportDialog 举报对话框组件 - 集成举报入口到 PostCard、CommentItem、LongPressMenu Made-with: Cursor
26 lines
867 B
TypeScript
26 lines
867 B
TypeScript
/**
|
|
* 业务组件导出
|
|
*/
|
|
|
|
// PostCard 新架构(从 PostCard 目录导出)
|
|
export { default as PostCard } from './PostCard';
|
|
// 导出 PostCard 相关类型和工具
|
|
export type {
|
|
PostCardActionType,
|
|
PostCardAction,
|
|
PostCardOnAction,
|
|
PostCardFeatures,
|
|
PostCardFeaturesPreset,
|
|
PostCardFeaturesConfig,
|
|
PostCardProps,
|
|
} from './PostCard';
|
|
export { default as CommentItem } from './CommentItem';
|
|
export { default as UserProfileHeader } from './UserProfileHeader';
|
|
export { default as SystemMessageItem } from './SystemMessageItem';
|
|
export { default as SearchBar } from './SearchBar';
|
|
export { default as TabBar } from './TabBar';
|
|
export { default as VoteCard } from './VoteCard';
|
|
export { default as VoteEditor } from './VoteEditor';
|
|
export { default as VotePreview } from './VotePreview';
|
|
export { default as ReportDialog } from './ReportDialog';
|