web-humas-fe/service/article.ts

8 lines
224 B
TypeScript
Raw Normal View History

2024-04-04 10:30:07 +00:00
import { httpGet } from "./http-config/axios-base-service";
export async function getListArticle() {
const headers = {
"content-type": "application/json",
};
return await httpGet(`/articles`, headers);
}