11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
import FormDetailMasterUserRole from "@/components/form/form-detail-master-user-role";
|
|
import { Card } from "@heroui/react";
|
|
|
|
export default function DetailMasterRolePage() {
|
|
return (
|
|
<Card className="h-[96vh] rounded-md my- ml-3 bg-transparent">
|
|
<FormDetailMasterUserRole />
|
|
</Card>
|
|
);
|
|
}
|