2024-12-02 13:19:30 +00:00
|
|
|
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() {
|
2024-12-02 13:19:30 +00:00
|
|
|
return (
|
2025-01-19 16:13:06 +00:00
|
|
|
<Card className="h-[96vh] rounded-md bg-transparent">
|
2024-12-02 13:19:30 +00:00
|
|
|
<FormMasterUser />
|
|
|
|
|
</Card>
|
|
|
|
|
);
|
2024-04-24 10:10:26 +00:00
|
|
|
}
|