feat: application booting.

This commit is contained in:
a.bouhuolia
2021-09-08 16:27:16 +02:00
parent 7b3d310eab
commit 361aab89e6
93 changed files with 961 additions and 723 deletions

View File

@@ -47,10 +47,7 @@ function BillsList({
<DashboardPageContent>
<BillsViewsTabs />
<DashboardContentTable>
<BillsTable />
</DashboardContentTable>
<BillsTable />
</DashboardPageContent>
<BillsAlerts />

View File

@@ -4,6 +4,7 @@ import { useHistory } from 'react-router-dom';
import { compose } from 'utils';
import DataTable from 'components/DataTable';
import { DashboardContentTable } from 'components';
import TableSkeletonRows from 'components/Datatable/TableSkeletonRows';
import TableSkeletonHeader from 'components/Datatable/TableHeaderSkeleton';
@@ -92,6 +93,7 @@ function BillsDataTable({
}
return (
<DashboardContentTable>
<DataTable
columns={columns}
data={bills}
@@ -118,6 +120,7 @@ function BillsDataTable({
onViewDetails: handleViewDetailBill,
}}
/>
</DashboardContentTable>
);
}