mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
BC-17 feat: customer/vendor drawer of readonly details.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import React from 'react';
|
||||
import clsx from 'classnames';
|
||||
|
||||
import { Card } from 'components';
|
||||
|
||||
import VendorDetailsActionsBar from './VendorDetailsActionsBar';
|
||||
import VendorDetailsHeader from './VendorDetailsHeader';
|
||||
|
||||
import Style from './VendorDetailsDrawer.module.scss';
|
||||
|
||||
/**
|
||||
* contact detail.
|
||||
*/
|
||||
export default function CustomerDetails() {
|
||||
return (
|
||||
<div className={clsx(Style.root)}>
|
||||
<VendorDetailsActionsBar />
|
||||
|
||||
<Card>
|
||||
<VendorDetailsHeader />
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user