Grafana-[data,sql,ui]: Use named imports (#105734)

grafana-[data,sql,ui]: use named imports
This commit is contained in:
Smit Patel
2025-05-22 17:08:46 +01:00
committed by GitHub
parent e433af003f
commit e389407907
9 changed files with 9 additions and 10 deletions
@@ -1,7 +1,6 @@
import { css } from '@emotion/css';
import { useState, useMemo, useEffect } from 'react';
import { useAsyncFn } from 'react-use';
import useDebounce from 'react-use/lib/useDebounce';
import { useAsyncFn, useDebounce } from 'react-use';
import { formattedValueToString, getValueFormat, TimeRange } from '@grafana/data';
import { Icon, Spinner, useTheme2 } from '@grafana/ui';
@@ -1,4 +1,4 @@
import useAsync from 'react-use/lib/useAsync';
import { useAsync } from 'react-use';
import { SelectableValue, TypedVariableModel } from '@grafana/data';
import { getTemplateSrv } from '@grafana/runtime';