mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
19 lines
377 B
TypeScript
19 lines
377 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import BranchFormFields from './BranchFormFields';
|
|
import BranchFormFloatingActions from './BranchFormFloatingActions';
|
|
|
|
/**
|
|
* Branch form content.
|
|
*/
|
|
export default function BranchFormContent() {
|
|
return (
|
|
<Form>
|
|
<BranchFormFields />
|
|
<BranchFormFloatingActions />
|
|
</Form>
|
|
);
|
|
}
|