'use client'; import { useState } from 'react'; import AddNotification from '@/components/dialogues/AddNotification'; import useNotifications from '@/hooks/useNotifications'; import { Plus } from 'lucide-react'; export const NotificationSettings = ({ onError, onSuccess }: { onError: (message: string) => void, onSuccess: (message: string) => void }) => { const { loadNotifications } = useNotifications(); return (
Manage your notification settings