feat : allocate landed cost.

This commit is contained in:
elforjani3
2021-07-25 01:16:24 +02:00
parent c72918fb1f
commit cd27864f6d
10 changed files with 161 additions and 115 deletions

View File

@@ -13,12 +13,14 @@ export default function AllocateLandedCostFormBody() {
field: { value },
meta: { error, touched },
}) => (
<AllocateLandedCostEntriesTable
entries={value}
onUpdateData={(newEntries) => {
setFieldValue('entries', newEntries);
}}
/>
<>
<AllocateLandedCostEntriesTable
entries={value}
onUpdateData={(newEntries) => {
setFieldValue('entries', newEntries);
}}
/>
</>
)}
</FastField>
</div>