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

11 lines
270 B
TypeScript

import FormMasterUser from "@/components/form/form-master-user";
import { Card } from "@nextui-org/react";
export default function CreateMasterUserPage() {
return (
<Card className="h-[96vh] rounded-md bg-transparent">
<FormMasterUser />
</Card>
);
}