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