mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
feat: application booting.
This commit is contained in:
@@ -47,10 +47,7 @@ function BillsList({
|
||||
|
||||
<DashboardPageContent>
|
||||
<BillsViewsTabs />
|
||||
|
||||
<DashboardContentTable>
|
||||
<BillsTable />
|
||||
</DashboardContentTable>
|
||||
<BillsTable />
|
||||
</DashboardPageContent>
|
||||
|
||||
<BillsAlerts />
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user