test-iki-mini-app
Version:
ứng dựng bán hàng trên mini app z a l o
15 lines (12 loc) • 344 B
JSX
import { callApi } from "../api/index.jsx";
import { constants as c } from "../constants";
const points = () => {
return callApi(`/customer/${c.STORE_CODE}/reward_points`, "get");
};
const getHistoryPoints = () => {
return callApi(`/customer/${c.STORE_CODE}/point_history`, "get")
}
export const coin = {
points,
getHistoryPoints,
};