8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
|
|
export const getDocuments = (): any => {
|
||
|
|
return fetch("/api/documents", {
|
||
|
|
headers: {
|
||
|
|
"Content-Type": "application/json",
|
||
|
|
},
|
||
|
|
});
|
||
|
|
};
|