user type graphql added

This commit is contained in:
2025-11-25 20:16:11 +03:00
parent eedfed1a65
commit 2062aa7a1d
52 changed files with 3111 additions and 45 deletions

View File

@@ -0,0 +1,5 @@
import { PageAddUserTypes } from "@/pages/user-types/add/page";
const UserTypesAddPage = () => { return <PageAddUserTypes /> }
export default UserTypesAddPage;

View File

@@ -0,0 +1,5 @@
import { PageUserTypes } from '@/pages/user-types/page';
const UserTypesPage = () => { return <PageUserTypes /> }
export default UserTypesPage;

View File

@@ -0,0 +1,5 @@
import { PageUpdateUserTypes } from "@/pages/user-types/update/page";
const UserTypesUpdatePage = () => { return <><PageUpdateUserTypes /></> }
export default UserTypesUpdatePage;