Removed: Footer and search bar

This commit is contained in:
Llewellyn D'souza
2022-02-16 13:13:31 +05:30
parent 243f4c5fa1
commit e6186d7835
10 changed files with 8 additions and 21 deletions

View File

@@ -1,6 +1,5 @@
import MDBox from 'components/MDBox';
import DashboardNavbar from 'components/DashboardNavbar';
import Footer from 'components/Footer';
import DashboardLayout from 'layouts/DashboardLayout';
import EquipmentIcon from 'assets/images/EquimpmentIcon';
import ProductsIcon from 'assets/images/ProductsIcon';
@@ -18,7 +17,12 @@ function SetupInventory() {
},
{
name: 'Products',
path: { update: '/', addNew: '/setup/inventory/product/add-new-product', cycleCount: '/', list: '/' },
path: {
update: '/',
addNew: '/setup/inventory/product/add-new-product',
cycleCount: '/',
list: '/'
},
icon: <ProductsIcon />
},
{
@@ -45,7 +49,6 @@ function SetupInventory() {
))}
</Grid>
</MDBox>
<Footer />
</DashboardLayout>
);
}