10 lines
245 B
JavaScript
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;
|
|
};
|