Files
Webklar.com/app/protected/page.tsx
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

9 lines
231 B
TypeScript

import ProtectedAppointmentBooking from '@/components/ProtectedAppointmentBooking'
export default function ProtectedPage() {
return (
<div className="min-h-screen p-4">
<ProtectedAppointmentBooking />
</div>
)
}