12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
import FormMasterUser from "@/components/form/form-master-user";
|
|
import FormMasterUserEdit from "@/components/form/form-master-user-edit";
|
|
import { Card } from "@heroui/react";
|
|
|
|
export default function CreateMasterUserPage() {
|
|
return (
|
|
<Card className="h-[96vh] rounded-md bg-transparent">
|
|
<FormMasterUserEdit />
|
|
</Card>
|
|
);
|
|
}
|