mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 19:30:30 +00:00
19 lines
461 B
JavaScript
19 lines
461 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import { CLASSES } from 'common/classes';
|
|
|
|
import WarehouseTransferFormHeaderFields from './WarehouseTransferFormHeaderFields';
|
|
|
|
/**
|
|
* Warehose transfer form header section.
|
|
*/
|
|
function WarehouseTransferFormHeader() {
|
|
return (
|
|
<div className={classNames(CLASSES.PAGE_FORM_HEADER)}>
|
|
<WarehouseTransferFormHeaderFields />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default WarehouseTransferFormHeader;
|