UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

11 lines 381 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