web-warga-bicara/app/(admin)/admin/master-user/edit/[id]/page.tsx

11 lines
286 B
TypeScript

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