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