import React from 'react';
import { SegmentSection } from '@grafana/ui';
import { GraphiteQueryEditorState } from '../state/store';
import { MetricsSection } from './MetricsSection';
import { TagsSection } from './TagsSection';
type Props = {
state: GraphiteQueryEditorState;
};
export function SeriesSection({ state }: Props) {
const sectionContent = state.queryModel?.seriesByTagUsed ? (
) : (
);
return (
{sectionContent}
);
}