UNPKG

@azure/communication-react

Version:

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

11 lines 379 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { useSelectorWithAdaptation } from './useAdaptedSelector'; /** * @private */ export const useSelector = (selector, selectorProps) => { // use selector with no adaptation return useSelectorWithAdaptation(selector, state => state, selectorProps); }; //# sourceMappingURL=useSelector.js.map