chrone: sperate client and server to different repos.

This commit is contained in:
a.bouhuolia
2021-09-21 17:13:53 +02:00
parent e011b2a82b
commit 18df5530c7
10015 changed files with 17686 additions and 97524 deletions

42
src/routes/preferences.js Normal file
View File

@@ -0,0 +1,42 @@
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 Currencies from 'containers/Preferences/Currencies/Currencies';
import Item from 'containers/Preferences/Item';
import DefaultRoute from '../containers/Preferences/DefaultRoute';
const BASE_URL = '/preferences';
export default [
{
path: `${BASE_URL}/general`,
component: General,
exact: true,
},
{
path: `${BASE_URL}/users`,
component: Users,
exact: true,
},
{
path: `${BASE_URL}/currencies`,
component: Currencies,
exact: true,
},
{
path: `${BASE_URL}/accountant`,
component: Accountant,
exact: true,
},
{
path: `${BASE_URL}/items`,
component: Item,
exact: true,
},
{
path: `${BASE_URL}/`,
component: DefaultRoute,
exact: true,
},
];