mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
21 lines
448 B
TypeScript
21 lines
448 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { Classes } from '@blueprintjs/core';
|
|
|
|
import MoneyOutContentFields from './MoneyOutContentFields';
|
|
import TransactionTypeFields from './TransactionTypeFields';
|
|
|
|
/**
|
|
* Money out form fields.
|
|
*/
|
|
function MoneyOutFormFields() {
|
|
return (
|
|
<div className={Classes.DIALOG_BODY}>
|
|
<TransactionTypeFields />
|
|
<MoneyOutContentFields />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default MoneyOutFormFields;
|