mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
|
||||
import 'style/components/Drawers/ItemDrawer.scss';
|
||||
|
||||
import { DrawerBody } from 'components';
|
||||
import ItemContentDetails from './ItemContentDetails';
|
||||
import { ItemDetailDrawerProvider } from './ItemDetailDrawerProvider';
|
||||
|
||||
/**
|
||||
* Item detail drawer content.
|
||||
*/
|
||||
export default function ItemDetailDrawerContent({
|
||||
// #ownProp
|
||||
itemId,
|
||||
}) {
|
||||
return (
|
||||
<ItemDetailDrawerProvider itemId={itemId}>
|
||||
<DrawerBody>
|
||||
<ItemContentDetails />
|
||||
</DrawerBody>
|
||||
</ItemDetailDrawerProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user