Handlers for UserShort.

View user's profile picture.
Close #25, adds logic to hamburger.
This commit is contained in:
Paul
2021-08-09 15:51:22 +01:00
parent c8b5753211
commit f19e334d56
8 changed files with 74 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
/*export const SearchSidebar = observer(
({ channel }: { channel: Channel }) => {
const keys = [...channel.recipient_ids!];
const entries = useEntries(channel, keys);
return (
<GenericSidebarBase>
<MemberList entries={entries} context={channel} />
</GenericSidebarBase>
);
},
);*/