usePageFilters.tsx 292 B

1234567891011
  1. import PageFiltersStore from 'sentry/stores/pageFiltersStore';
  2. import {useLegacyStore} from 'sentry/stores/useLegacyStore';
  3. /**
  4. * Custom hook that returns the state of page filters
  5. */
  6. function usePageFilters() {
  7. return useLegacyStore(PageFiltersStore);
  8. }
  9. export default usePageFilters;