mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
Migrate from Vue to React framework.
This commit is contained in:
15
client/src/routes/authentication.js
Normal file
15
client/src/routes/authentication.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import Login from '../pages/Authentication/Login';
|
||||
import ResetPassword from '../pages/Authentication/ResetPassword';
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/login',
|
||||
exact: true,
|
||||
component: Login,
|
||||
},
|
||||
{
|
||||
path: '/reset_password',
|
||||
exact: true,
|
||||
component: ResetPassword,
|
||||
}
|
||||
];
|
||||
11
client/src/routes/dashboard.js
Normal file
11
client/src/routes/dashboard.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import AccountsChart from '../pages/Dashboard/AccountsChart';
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/accounts/list',
|
||||
component: AccountsChart,
|
||||
icon: 'cut',
|
||||
text: 'Chart of Accounts',
|
||||
label: 'Chart of Accounts'
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user