UNPKG

@azure/communication-react

Version:

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

16 lines 587 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import * as reselect from 'reselect'; import { getDeviceManager } from '../../CallComposite/selectors/baseSelectors'; /** * @private */ export const moreDrawerSelector = reselect.createSelector([getDeviceManager], deviceManager => { return { microphones: deviceManager.microphones, speakers: deviceManager.speakers, selectedMicrophone: deviceManager.selectedMicrophone, selectedSpeaker: deviceManager.selectedSpeaker }; }); //# sourceMappingURL=moreDrawerSelector.js.map