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