Neah/app/notifications/page.tsx
2025-05-02 13:08:49 +02:00

14 lines
298 B
TypeScript

export default function NotificationsPage() {
return (
<div className="w-full h-[calc(100vh-8rem)]">
<iframe
src="https://example.com/notifications"
className="w-full h-full border-none"
allowFullScreen={true}
allowFullScreen
/>
</div>
)
}