mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
20 lines
413 B
TypeScript
20 lines
413 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import WarehouseFormFields from './WarehouseFormFields';
|
|
import WarehouseFormFloatingActions from './WarehouseFormFloatingActions';
|
|
|
|
/**
|
|
* Warehouse form content.
|
|
* @returns
|
|
*/
|
|
export default function WarehouseFormContent() {
|
|
return (
|
|
<Form>
|
|
<WarehouseFormFields />
|
|
<WarehouseFormFloatingActions />
|
|
</Form>
|
|
);
|
|
}
|