mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
20 lines
507 B
TypeScript
20 lines
507 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import CustomerOpeningBalanceFields from './CustomerOpeningBalanceFields';
|
|
import CustomerOpeningBalanceFormFloatingActions from './CustomerOpeningBalanceFormFloatingActions';
|
|
|
|
/**
|
|
* Customer Opening balance form content.
|
|
* @returns
|
|
*/
|
|
export default function CustomerOpeningBalanceFormContent() {
|
|
return (
|
|
<Form>
|
|
<CustomerOpeningBalanceFields />
|
|
<CustomerOpeningBalanceFormFloatingActions />
|
|
</Form>
|
|
);
|
|
}
|