profileAPI.js 143 Bytes
Newer Older
dungtnguyen's avatar
dungtnguyen committed
1 2 3 4
import axiosClient from '../network/axios';
export default {
  requestChangeUserInfo: ({id, body}) => axiosClient.put(`users/${id}`, body),
};