mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 03:40:31 +00:00
18 lines
338 B
TypeScript
18 lines
338 B
TypeScript
// @ts-nocheck
|
|
import { useRequestQuery } from '../useQueryRequest';
|
|
|
|
/**
|
|
* Retrieve the job metadata.
|
|
*/
|
|
export function useDateFormats(props = {}) {
|
|
return useRequestQuery(
|
|
['DATE_FORMATS'],
|
|
{ method: 'get', url: `/date-formats` },
|
|
{
|
|
select: (res) => res.data,
|
|
defaultData: [],
|
|
...props,
|
|
},
|
|
);
|
|
}
|