11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
export default function AppointmentsPage() {
|
|
return (
|
|
<div className="space-y-3">
|
|
<h1 className="text-2xl font-semibold text-text-primary">Appointments</h1>
|
|
<p className="text-sm text-text-secondary">
|
|
Appointments module is coming soon.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|