mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
re-structure to monorepo.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
import { DrawerBody } from '@/components';
|
||||
|
||||
import '@/style/components/Drawers/AccountDrawer.scss';
|
||||
|
||||
import { AccountDrawerProvider } from './AccountDrawerProvider';
|
||||
import AccountDrawerDetails from './AccountDrawerDetails';
|
||||
|
||||
/**
|
||||
* Account drawer content.
|
||||
*/
|
||||
export default function AccountDrawerContent({
|
||||
// #ownProp
|
||||
accountId,
|
||||
name,
|
||||
}) {
|
||||
return (
|
||||
<AccountDrawerProvider name={name} accountId={accountId}>
|
||||
<DrawerBody>
|
||||
<AccountDrawerDetails />
|
||||
</DrawerBody>
|
||||
</AccountDrawerProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user