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

11 lines
287 B
TypeScript
Raw Normal View History

2024-12-04 02:35:29 +00:00
import FormMasterUserRole from "@/components/form/form-master-user-role";
import { Card } from "@nextui-org/react";
2024-04-24 10:41:04 +00:00
export default function CreateMasterUserRolePage() {
2024-12-04 02:35:29 +00:00
return (
2025-01-19 16:13:06 +00:00
<Card className="h-[96vh] rounded-md bg-transparent">
2024-12-04 02:35:29 +00:00
<FormMasterUserRole />
</Card>
);
2024-04-24 10:41:04 +00:00
}