UNPKG

@azure/communication-react

Version:

React library for building modern communication user experiences utilizing Azure Communication Services

13 lines 478 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { participantListSelector } from './participantListSelector'; import { createSelector } from 'reselect'; /** * Selects data that drives {@link ParticipantsButton} component. * * @public */ export const participantsButtonSelector = createSelector([participantListSelector], (participantListProps) => { return participantListProps; }); //# sourceMappingURL=participantsButtonSelector.js.map