This commit is contained in:
elforjani3
2020-12-02 17:40:47 +02:00
49 changed files with 1322 additions and 1315 deletions

View File

@@ -2,7 +2,7 @@ import General from 'containers/Preferences/General/General';
import Users from 'containers/Preferences/Users/Users';
import Accountant from 'containers/Preferences/Accountant/Accountant';
import Accounts from 'containers/Preferences/Accounts/Accounts';
import CurrenciesList from 'containers/Preferences/Currencies/CurrenciesList'
import Currencies from 'containers/Preferences/Currencies/Currencies'
const BASE_URL = '/preferences';
@@ -19,7 +19,7 @@ export default [
},
{
path: `${BASE_URL}/currencies`,
component: CurrenciesList,
component: Currencies,
exact: true,
},
{
@@ -27,8 +27,4 @@ export default [
component: Accountant,
exact: true,
},
{
path: `${BASE_URL}/accounts`,
component: Accounts,
},
];