|
import FormMasterUserRole from "@/components/form/form-master-user-role";
|
|
import { Card } from "@heroui/react";
|
|
|
|
export default function CreateMasterUserRolePage() {
|
|
return (
|
|
<Card className="h-[96vh] rounded-md bg-transparent">
|
|
<FormMasterUserRole />
|
|
</Card>
|
|
);
|
|
}
|