feat(warehouse) add warehouse gird.

This commit is contained in:
elforjani13
2022-01-30 18:04:36 +02:00
committed by a.bouhuolia
parent a89ceffaca
commit 86710b3ba8
8 changed files with 239 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ import Currencies from 'containers/Preferences/Currencies/Currencies';
import Item from 'containers/Preferences/Item';
import SMSIntegration from '../containers/Preferences/SMSIntegration';
import DefaultRoute from '../containers/Preferences/DefaultRoute';
import Warehouses from '../containers/Preferences/Warehouses';
const BASE_URL = '/preferences';
@@ -36,6 +37,11 @@ export default [
component: Currencies,
exact: true,
},
{
path: `${BASE_URL}/warehouses`,
component: Warehouses,
exact: true,
},
{
path: `${BASE_URL}/accountant`,
component: Accountant,