mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: Drawer.
This commit is contained in:
12
client/src/components/DrawersContainer.js
Normal file
12
client/src/components/DrawersContainer.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import EstimateDrawer from 'containers/Sales/Estimate/EstimateDrawer';
|
||||
import InvoiceDrawer from 'containers/Sales/Invoice/InvoiceDrawer';
|
||||
|
||||
export default function DrawersContainer() {
|
||||
return (
|
||||
<div>
|
||||
<EstimateDrawer name={'estimate-drawer'} />
|
||||
<InvoiceDrawer name={'invoice-drawer'} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user