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

11 lines
283 B
TypeScript
Raw Normal View History

2024-12-04 02:35:29 +00:00
import FormMasterUserRole from "@/components/form/form-master-user-role";
2025-02-13 08:25:39 +00:00
import { Card } from "@heroui/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
}