import React from 'react'; import { Notification } from '../hooks/useNotifications'; interface NotificationToastProps { notification: Notification; onClose: () => void; } export const NotificationToast: React.FC = ({ notification, onClose, }) => { return (
{notification.message}
); };