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