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

12 lines
344 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";
2025-02-13 08:25:39 +00:00
import { Card } from "@heroui/react";
2025-02-11 06:01:48 +00:00
export default function CreateMasterUserPage() {
return (
<Card className="h-[96vh] rounded-md bg-transparent">
<FormMasterUserEdit />
</Card>
);
}