UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 288 B
import { useSelectedChannelState } from './useSelectedChannelState'; const selector = (c) => c.state.membership; const keys = ['member.updated']; export function useChannelMembershipState(channel) { return useSelectedChannelState({ channel, selector, stateChangeEventKeys: keys }); }