feat(branches): add branches.

This commit is contained in:
elforjani13
2022-01-23 23:23:40 +02:00
parent a958c6088a
commit 45d9e2cc15
21 changed files with 648 additions and 10 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 Branches from '../containers/Preferences/Branches'
const BASE_URL = '/preferences';
@@ -36,6 +37,11 @@ export default [
component: Currencies,
exact: true,
},
{
path: `${BASE_URL}/branches`,
component: Branches,
exact: true,
},
{
path: `${BASE_URL}/accountant`,
component: Accountant,