import './QueryAggregation.styles.scss'; import InputWithLabel from 'components/InputWithLabel/InputWithLabel'; import { DataSource } from 'types/common/queryBuilder'; import QueryAggregationSelect from './QueryAggregationSelect'; function QueryAggregationOptions({ source, }: { source: DataSource; }): JSX.Element { console.log('source', source); return (
every
{}} />
); } export default QueryAggregationOptions;