mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
import useApi from './useApi';
|
|
|
|
export function useReports() {
|
|
const { get, useQuery } = useApi();
|
|
const { data, error, isLoading } = useQuery(['reports'], () => get(`/reports`));
|
|
|
|
return { reports: data, error, isLoading };
|
|
}
|
|
|
|
export default useReports;
|