import { useState } from 'react' import { useNotifications } from '@/hooks/useNotifications' import { NotificationCenter } from './NotificationCenter' export function NotificationBell() { const [open, setOpen] = useState(false) const { unreadCount } = useNotifications() return ( <> setOpen(false)} /> ) }