CFE-3 complete behavioral and rendering tests for CreateForm Component and start CreateContent testing component

This commit is contained in:
2023-10-04 14:19:42 +03:30
parent 746c555034
commit 583d4aa332
5 changed files with 23 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
import SpaceDashboardIcon from "@mui/icons-material/SpaceDashboard";
import ManageAccountsIcon from '@mui/icons-material/ManageAccounts';
const sidebarMenu = [
[
@@ -6,7 +7,16 @@ const sidebarMenu = [
key: "sidebar.dashboard",
type: "page",
route: "/dashboard",
icon: <SpaceDashboardIcon />,
icon: <SpaceDashboardIcon/>,
selected: false,
permission: "all",
},
{
key: "sidebar.expert-management",
type: "page",
name: "expert_management",
route: "/dashboard/expert-management",
icon: <ManageAccountsIcon/>,
selected: false,
permission: "all",
},