15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
"use client";
|
|
import BaseLayout from "@/components/layouts/BaseLayout";
|
|
import MainPrescription from "@/components/page/prescription/MainPrescription";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<BaseLayout title="Đơn thuốc">
|
|
<MainPrescription />
|
|
</BaseLayout>
|
|
);
|
|
};
|
|
|
|
export default page;
|