feat: make invoices dynamic
This commit is contained in:
18
packages/web/src/hooks/useInvoices.ee.ts
Normal file
18
packages/web/src/hooks/useInvoices.ee.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { useQuery } from '@apollo/client';
|
||||
import { TInvoice } from '@automatisch/types';
|
||||
|
||||
import { GET_INVOICES } from 'graphql/queries/get-invoices.ee';
|
||||
|
||||
type UseInvoicesReturn = {
|
||||
invoices: TInvoice[],
|
||||
loading: boolean;
|
||||
};
|
||||
|
||||
export default function useInvoices(): UseInvoicesReturn {
|
||||
const { data, loading } = useQuery(GET_INVOICES);
|
||||
|
||||
return {
|
||||
invoices: data?.getInvoices || [],
|
||||
loading: loading
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user