mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
17 lines
447 B
JavaScript
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>
|
|
);
|
|
}
|