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