- Add notification service for API calls - Add notification Zustand store with WebSocket integration - Create NotificationBell component with badge - Create NotificationDropdown with recent notifications - Create NotificationItem with icons and actions - Update MainLayout to use NotificationBell Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
/**
|
|
* Notification Components
|
|
*/
|
|
|
|
export { default as NotificationBell } from './NotificationBell';
|
|
export { default as NotificationDropdown } from './NotificationDropdown';
|
|
export { default as NotificationItem } from './NotificationItem';
|