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

11 lines
266 B
TypeScript
Raw Normal View History

import FormMasterUser from "@/components/form/form-master-user";
2025-02-13 09:15:38 +00:00
import { Card } from "@heroui/react";
2024-04-24 10:10:26 +00:00
export default function CreateMasterUserPage() {
return (
2025-01-19 16:13:06 +00:00
<Card className="h-[96vh] rounded-md bg-transparent">
<FormMasterUser />
</Card>
);
2024-04-24 10:10:26 +00:00
}