'use client';
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
export default function NotificationCenter() {
return (
<ToastContainer
position="top-right"
/>
)
}