WIP Frontend development.

This commit is contained in:
Ahmed Bouhuolia
2020-02-18 02:31:42 +02:00
parent e5c78fe555
commit a37341ff00
24 changed files with 364 additions and 80 deletions

View File

@@ -1,18 +1,17 @@
import Homepage from "containers/Dashboard/Homepage";
// import AccountsChart from 'pages/Dashboard/AccountsChart';
import AccountsChart from 'containers/Dashboard/Accounts/AccountsChart';
export default [
{
path: '/homepage',
path: '/dashboard/homepage',
component: Homepage,
exact: true,
},
// {
// path: '/accounts/list',
// component: AccountsChart,
// icon: 'cut',
// text: 'Chart of Accounts',
// label: 'Chart of Accounts'
// },
{
path: '/dashboard/accounts',
component: AccountsChart,
icon: 'cut',
text: 'Chart of Accounts',
label: 'Chart of Accounts'
},
];