mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
WIP
This commit is contained in:
32
client/src/routes/preferences.js
Normal file
32
client/src/routes/preferences.js
Normal file
@@ -0,0 +1,32 @@
|
||||
import General from 'containers/Dashboard/Preferences/General';
|
||||
import Users from 'containers/Dashboard/Preferences/Users';
|
||||
import Accountant from 'containers/Dashboard/Preferences/Accountant';
|
||||
import Accounts from 'containers/Dashboard/Preferences/Accounts';
|
||||
|
||||
const BASE_URL = '/dashboard/preferences';
|
||||
|
||||
export default [
|
||||
{
|
||||
path: `${BASE_URL}/general`,
|
||||
name: 'dashboard.preferences.general',
|
||||
component: General,
|
||||
exact: true,
|
||||
},
|
||||
{
|
||||
path: `${BASE_URL}/users`,
|
||||
name: 'dashboard.preferences.users',
|
||||
component: Users,
|
||||
exact: true,
|
||||
},
|
||||
{
|
||||
path: `${BASE_URL}/accountant`,
|
||||
name: 'dashboard.preferences.accountant',
|
||||
component: Accountant,
|
||||
exact: true,
|
||||
},
|
||||
{
|
||||
path: `${BASE_URL}/accounts`,
|
||||
name: 'dashboard.preferences.accounts',
|
||||
component: Accounts,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user