2025-04-01 10:38:02 +09:00

10 lines
236 B
TypeScript

import { locationService } from '@grafana/runtime';
export const useHistory = () => {
return {
push: ({ query }: { query: Parameters<typeof locationService.partial>[0] }) => {
locationService.partial(query);
},
};
};