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