notifications ok

This commit is contained in:
2025-10-07 17:02:12 +02:00
parent a4dca1d4f0
commit c1171ad9e9
8 changed files with 174 additions and 46 deletions
+6
View File
@@ -0,0 +1,6 @@
import { useContext } from "react";
import { NotificationContext } from "../providers/NotificationProvider";
export default function useNotifications() {
return useContext(NotificationContext);
}