web-humas-fe/app/(admin)/admin/master-user/edit/[id]/page.tsx

12 lines
348 B
TypeScript
Raw Normal View History

2025-02-11 06:01:48 +00:00
import FormMasterUser from "@/components/form/form-master-user";
import FormMasterUserEdit from "@/components/form/form-master-user-edit";
import { Card } from "@nextui-org/react";
export default function CreateMasterUserPage() {
return (
<Card className="h-[96vh] rounded-md bg-transparent">
<FormMasterUserEdit />
</Card>
);
}