UNPKG

@azure/communication-react

Version:

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

14 lines 442 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { getCallStatus, getIsScreenShareOn } from './baseSelectors'; import { createSelector } from 'reselect'; /** * @private */ export const callStatusSelector = createSelector([getCallStatus, getIsScreenShareOn], (callStatus, isScreenShareOn) => { return { callStatus, isScreenShareOn }; }); //# sourceMappingURL=callStatusSelector.js.map