MCPcopy
hub / github.com/yinxin630/fiora / GroupInfoProps

Interface GroupInfoProps

packages/web/src/modules/GroupInfo.tsx:14–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12import Style from './InfoDialog.less';
13
14interface GroupInfoProps {
15 visible: boolean;
16 group?: {
17 _id: string;
18 name: string;
19 avatar: string;
20 members: number;
21 };
22 onClose: () => void;
23}
24
25function GroupInfo(props: GroupInfoProps) {
26 const { visible, onClose, group } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected