Mejora 1: Implementado sistema de notificaciones global con Snackbar y modal de confirmación.

This commit is contained in:
2025-10-29 11:47:47 -03:00
parent 3fbb254ac3
commit 267aaab91f
5 changed files with 142 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
// frontend/src/hooks/useNotification.ts
import { useContext } from 'react';
import { NotificationContext } from '../contexts/NotificationContext';
export const useNotification = () => {
return useContext(NotificationContext);
};