fp/services/next/app/components/notification-center.tsx

13 lines
250 B
TypeScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
'use client';
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
export default function NotificationCenter() {
return (
<ToastContainer
position="top-right"
/>
)
}