forked from RiseUP/riseup-squad21
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import SecretaryLayout from "@/components/secretary-layout";
|
|
import ScheduleForm from "@/components/schedule/schedule-form";
|
|
|
|
export default function SecretaryAppointments() {
|
|
return (
|
|
<SecretaryLayout>
|
|
<ScheduleForm />
|
|
</SecretaryLayout>
|
|
);
|
|
}
|
|
|