enum.ts 272 Bytes
import { postServiceConstPayees } from '@/services';
import { useCallback } from 'react';

export default () => {
  const getPayees = useCallback(async () => {
    const result = await postServiceConstPayees();
    return result.data;
  }, []);
  return { getPayees };
};