import axiosClient from '../network/axios'; const notificationAPI = { requestGetNotification: ({filter, page, pageSize}) => axiosClient.get( `notifications?Filters=${filter}&Sorts=&Page=${page}&PageSize=${pageSize}`, ), }; export default notificationAPI;