diff --git a/packages/scenes-app/src/react-demo/DynamicVariablesPage.tsx b/packages/scenes-app/src/react-demo/DynamicVariablesPage.tsx index 0ec6244af..70909e4a2 100644 --- a/packages/scenes-app/src/react-demo/DynamicVariablesPage.tsx +++ b/packages/scenes-app/src/react-demo/DynamicVariablesPage.tsx @@ -1,10 +1,20 @@ -import { CustomVariable, DataSourceVariable, QueryVariable, VariableControl } from '@grafana/scenes-react'; +import { + AdHocFiltersVariable, + CustomVariable, + DataSourceVariable, + GroupByVariable, + QueryVariable, + VariableControl, + VizPanel, + useQueryRunner, +} from '@grafana/scenes-react'; import { Button, Stack } from '@grafana/ui'; import React from 'react'; import { PageWrapper } from './PageWrapper'; import { PlainGraphWithRandomWalk } from './PlainGraphWithRandomWalk'; import { DemoVizLayout } from './utils'; import { VariableHide, VariableRefresh, VariableSort } from '@grafana/schema'; +import { VizConfigBuilders } from '@grafana/scenes'; export function DynamicVariablesPage() { const [regexDsVar, setRegexDsVar] = React.useState(undefined); @@ -41,12 +51,12 @@ export function DynamicVariablesPage() { -