6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
import { useNotificationStore } from "@/store/notifications"
|
|
|
|
export function listNotifications() {
|
|
return useNotificationStore.getState().notifications
|
|
}
|