UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

5 lines 328 B
import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/with-selector'; export function useStore(store, selector, a1, a2, a3) { const selectorWithArgs = state => selector(state, a1, a2, a3); return useSyncExternalStoreWithSelector(store.subscribe, store.getSnapshot, store.getSnapshot, selectorWithArgs); }