Configure Completed is added
This commit is contained in:
19
app/dashboard/configure/masterdata/page.tsx
Normal file
19
app/dashboard/configure/masterdata/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client"
|
||||
|
||||
import MasterDataPortal from "@/components/dashboard/configure/masterData";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function MasterdataPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<MasterDataPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/configure/rolesAndAccess/page.tsx
Normal file
20
app/dashboard/configure/rolesAndAccess/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
|
||||
import MasterDataPortal from "@/components/dashboard/configure/masterData";
|
||||
import RolesAccessPortal from "@/components/dashboard/configure/rolesaccess";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function RolesAccessPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<RolesAccessPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/configure/settings/page.tsx
Normal file
22
app/dashboard/configure/settings/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client"
|
||||
|
||||
import SettingsPortal from "@/components/dashboard/configure/settings";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function SettingsPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<SettingsPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
21
app/dashboard/configure/userLocation/page.tsx
Normal file
21
app/dashboard/configure/userLocation/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client"
|
||||
|
||||
import MasterDataPortal from "@/components/dashboard/configure/masterData";
|
||||
import RolesAccessPortal from "@/components/dashboard/configure/rolesaccess";
|
||||
import UserLocationPortal from "@/components/dashboard/configure/userLocation";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function userLocationPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<UserLocationPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
23
app/dashboard/configure/workflowautomation/page.tsx
Normal file
23
app/dashboard/configure/workflowautomation/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
|
||||
import WorkFlowAutomationPortal from "@/components/dashboard/configure/workflowAutomation";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function WorkflowAutomationPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<WorkFlowAutomationPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user