mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
23 lines
535 B
JavaScript
23 lines
535 B
JavaScript
import React from 'react';
|
|
|
|
import { Card } from 'components';
|
|
|
|
import AccountDrawerActionBar from './AccountDrawerActionBar';
|
|
import AccountDrawerHeader from './AccountDrawerHeader';
|
|
import AccountDrawerTable from './AccountDrawerTable';
|
|
|
|
/**
|
|
* Account view details.
|
|
*/
|
|
export default function AccountDrawerDetails() {
|
|
return (
|
|
<div className={'account-drawer'}>
|
|
<AccountDrawerActionBar />
|
|
<Card className={'card-header'}>
|
|
<AccountDrawerHeader />
|
|
</Card>
|
|
<AccountDrawerTable />
|
|
</div>
|
|
);
|
|
}
|