web-humas-fe/app/(admin)/admin/master-role/create/page.tsx

11 lines
318 B
TypeScript

import FormMasterUserRole from '@/components/form/form-master-user-role'
import { Card } from '@nextui-org/react'
export default function CreateMasterUserRolePage() {
return (
<Card className="h-[96vh] rounded-md my- ml-3 border bg-transparent">
<FormMasterUserRole />
</Card>
)
}