Neah-Enkun/app/notifications/page.tsx
2025-01-13 15:21:39 +01:00

14 lines
372 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"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
)
}