7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
'use client';
|
|
import NotificationCenter from '@/components/NotificationCenter';
|
|
|
|
export default function NotificationsPage() {
|
|
return <NotificationCenter />;
|
|
}
|