feat:update push

This commit is contained in:
TuanVT
2026-05-26 09:50:32 +07:00
parent 251854694e
commit bce004352c
17 changed files with 997 additions and 659 deletions
+14
View File
@@ -0,0 +1,14 @@
"use client";
import BaseLayout from "@/components/layouts/BaseLayout";
import UpdateConsultation from "@/components/page/consultation/UpdateConsultation";
import React from "react";
const page = () => {
return (
<BaseLayout title="Cập nhật phiên khám">
<UpdateConsultation />
</BaseLayout>
);
};
export default page;