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

11 lines
301 B
TypeScript
Raw Normal View History

2024-04-24 10:10:26 +00:00
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 my- ml-3 border bg-transparent">
<FormMasterUser />
</Card>
)
}