BC-17 feat: customer/vendor drawer of readonly details.

This commit is contained in:
a.bouhuolia
2021-09-09 11:56:06 +02:00
parent 6fd47aa884
commit 7b968a43ef
24 changed files with 738 additions and 25 deletions

View File

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