This commit is contained in:
Mike Cao 2024-09-30 21:48:38 -07:00
commit 6a0e88cd70
8 changed files with 155 additions and 12 deletions

View file

@ -0,0 +1,18 @@
import { useApi } from './useApi';
export function useRevenueValues(websiteId: string, startDate: Date, endDate: Date) {
const { get, useQuery } = useApi();
return useQuery({
queryKey: ['revenue:values', { websiteId, startDate, endDate }],
queryFn: () =>
get(`/reports/revenue`, {
websiteId,
startDate,
endDate,
}),
enabled: !!(websiteId && startDate && endDate),
});
}
export default useRevenueValues;