mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
Merge branch 'master' of https://github.com/abouolia/Ratteb
This commit is contained in:
@@ -14,6 +14,7 @@ import Search from 'containers/GeneralSearch/Search';
|
||||
import DashboardSplitPane from 'components/Dashboard/DashboardSplitePane';
|
||||
import GlobalHotkeys from './GlobalHotkeys';
|
||||
import withSettingsActions from 'containers/Settings/withSettingsActions';
|
||||
import DrawersContainer from 'components/DrawersContainer';
|
||||
|
||||
import { compose } from 'utils';
|
||||
|
||||
@@ -47,6 +48,7 @@ function Dashboard({
|
||||
<Search />
|
||||
<DialogsContainer />
|
||||
<GlobalHotkeys />
|
||||
<DrawersContainer />
|
||||
</DashboardLoadingIndicator>
|
||||
);
|
||||
}
|
||||
|
||||
16
client/src/components/DrawersContainer.js
Normal file
16
client/src/components/DrawersContainer.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import EstimateDrawer from 'containers/Sales/Estimate/EstimateDrawer';
|
||||
import InvoiceDrawer from 'containers/Sales/Invoice/InvoiceDrawer';
|
||||
import ReceiptDrawer from 'containers/Sales/Receipt/ReceiptDrawer';
|
||||
import PaymentReceive from 'containers/Sales/PaymentReceive/PaymentReceiveDrawer';
|
||||
|
||||
export default function DrawersContainer() {
|
||||
return (
|
||||
<div>
|
||||
<EstimateDrawer name={'estimate-drawer'} />
|
||||
<InvoiceDrawer name={'invoice-drawer'} />
|
||||
<ReceiptDrawer name={'receipt-drawer'} />
|
||||
<PaymentReceive name={'payment-receive-drawer'} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user