refactoring(accountant): accountant.

This commit is contained in:
elforjani3
2021-03-17 19:52:28 +02:00
parent 4e8bdee97a
commit d80e3083f7
8 changed files with 214 additions and 136 deletions

View File

@@ -1,8 +1,8 @@
import General from 'containers/Preferences/General/General';
import Users from 'containers/Preferences/Users/Users';
// import Accountant from 'containers/Preferences/Accountant/Accountant';
import Accountant from 'containers/Preferences/Accountant/Accountant';
import Accounts from 'containers/Preferences/Accounts/Accounts';
import Currencies from 'containers/Preferences/Currencies/Currencies'
import Currencies from 'containers/Preferences/Currencies/Currencies';
const BASE_URL = '/preferences';
@@ -22,9 +22,9 @@ export default [
component: Currencies,
exact: true,
},
// {
// path: `${BASE_URL}/accountant`,
// component: Accountant,
// exact: true,
// },
{
path: `${BASE_URL}/accountant`,
component: Accountant,
exact: true,
},
];