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

11 lines
277 B
TypeScript
Raw Normal View History

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