in the middle of party-user frontend,

This commit is contained in:
louiscklaw
2025-06-16 03:03:54 +08:00
parent 17aaf97722
commit e93c5dcf62
38 changed files with 3074 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
import { useTranslation } from 'react-i18next';
import { CustomBreadcrumbs } from 'src/components/custom-breadcrumbs';
import { DashboardContent } from 'src/layouts/dashboard';
import { paths } from 'src/routes/paths';
import { UserNewEditForm } from '../party-user-new-edit-form';
// ----------------------------------------------------------------------
export function UserCreateView() {
const { t } = useTranslation();
return (
<DashboardContent>
<CustomBreadcrumbs
heading={t('Create a new user')}
links={[
//
{ name: t('Dashboard'), href: paths.dashboard.root },
{ name: t('User'), href: paths.dashboard.user.root },
{ name: t('New user') },
]}
sx={{ mb: { xs: 3, md: 5 } }}
/>
<UserNewEditForm />
</DashboardContent>
);
}