import './QueryAggregation.styles.scss'; import InputWithLabel from 'components/InputWithLabel/InputWithLabel'; import QueryAggregationSelect from './QueryAggregationSelect'; function QueryAggregationOptions({ onAggregationOptionsSelect, }: { onAggregationOptionsSelect: (value: { func: string; arg: string }[]) => void; }): JSX.Element { return (
every
{}} />
); } export default QueryAggregationOptions;