diff --git a/src/components/Notifications.tsx b/src/components/Notifications.tsx index ce62478..c82ee4f 100644 --- a/src/components/Notifications.tsx +++ b/src/components/Notifications.tsx @@ -3,15 +3,22 @@ import type { Notification } from '../types/types'; type Props = { notifications: Notification[]; onRemove: (id: number) => void; + onHover: (id: number, hovering: boolean) => void; }; -export default function Notifications({ notifications, onRemove }: Props) { +export default function Notifications({ + notifications, + onRemove, + onHover, +}: Props) { return (