feat: Bill drawer.

This commit is contained in:
elforjani3
2021-07-22 17:42:43 +02:00
parent 1091e3f996
commit 1eacc254d8
13 changed files with 290 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
import React from 'react';
import { DataTable } from 'components';
import { useLocatedLandedCostColumns, ActionsMenu } from './components';
/**
* Located landed cost table.
*/
function LocatedLandedCostTable() {
const columns = useLocatedLandedCostColumns();
const DATA = [
{
name: 'INV-1000',
amount: '10.000.000',
allocation_method: 'Bill',
},
];
return <DataTable columns={columns} data={DATA} ContextMenu={ActionsMenu} />;
}
export default LocatedLandedCostTable;