Files
bigcapital/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.js
2021-07-25 01:16:24 +02:00

17 lines
447 B
JavaScript

import React from 'react';
import { Form } from 'formik';
import AllocateLandedCostFormFields from './AllocateLandedCostFormFields';
import AllocateLandedCostFloatingActions from './AllocateLandedCostFloatingActions';
/**
* Allocate landed cost form content.
*/
export default function AllocateLandedCostFormContent() {
return (
<Form>
<AllocateLandedCostFormFields />
<AllocateLandedCostFloatingActions />
</Form>
);
}