Feature/wms 29 (#29)

* tileGrid page
* fixed: overlap issue

Co-authored-by: [Diksha] <[diksha39511@gmail.com]>
Co-authored-by: Llewellyn D'souza <lledsouza2209@gmail.com>
This commit is contained in:
Dikshajain39511
2022-01-28 18:04:59 +05:30
committed by GitHub
parent 129f1f1738
commit a3732def15
4 changed files with 177 additions and 42 deletions

View File

@@ -44,6 +44,7 @@ import LoginScreen from 'pages/authentication';
// @mui icons
import Icon from '@mui/material/Icon';
import WarehouseScreen from 'pages/warehouse';
// Images
// import profilePicture from 'assets/images/team-3.jpg';
@@ -84,6 +85,20 @@ const protectedRoutes = [
key: 'dashboard',
route: '/dashboard',
component: <DashboardScreen />
}
]
},
{
type: 'collapse',
name: 'Setup',
key: 'Setup',
icon: <Icon fontSize="medium">dashboard</Icon>,
collapse: [
{
name: 'Warehouse Design',
key: 'warehouse',
route: '/warehouse',
component: <WarehouseScreen />
}
]
}