import AreaChart, { type Props as RawProps, } from '$src/lib/visualizations/raw/charts/AreaChart' import { type QueryRequestProps } from '$src/data' import useQuery from '$src/lib/internal/shared/useQuery' type Props = Omit & QueryRequestProps & { download?: boolean } function QueryAreaChart({ queryPath, params, download = false, tanstaskQueryOptions, ...rest }: Props) { const { data, isLoading, error, download: downloadFn, } = useQuery({ queryPath, params, tanstaskQueryOptions }) return ( ) } export default QueryAreaChart