useHistory.tsx 183 B

123456789
  1. import { locationService } from '@grafana/runtime';
  2. export const useHistory = () => {
  3. return {
  4. push: ({ query }: any) => {
  5. locationService.partial(query);
  6. },
  7. };
  8. };