Files
bigcapital/client/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.js
a.bouhuolia af34986aac feat: style read-only drawers.
fix: empty state in resources tables.
2021-08-24 14:57:19 +02:00

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>
);
}