mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
43 lines
1002 B
JavaScript
43 lines
1002 B
JavaScript
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/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,
|
|
},
|
|
];
|