Files
cod-fe/src/api/notification.jsx

10 lines
245 B
JavaScript

import { SendRequest } from '../components/Global/ApiRequest';
export const getAllNotification = async () => {
const response = await SendRequest({
method: 'get',
prefix: 'notification',
});
return response.data;
};