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