mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
27 lines
781 B
TypeScript
27 lines
781 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
import OtherExpnseFormFields from './OtherExpense/OtherExpnseFormFields';
|
|
import OwnerDrawingsFormFields from './OwnerDrawings/OwnerDrawingsFormFields';
|
|
import TransferToAccountFormFields from './TransferToAccount/TransferToAccountFormFields';
|
|
|
|
function MoneyOutContentFields({ accountType }) {
|
|
const handleTransactionType = () => {
|
|
switch (accountType) {
|
|
case 'OwnerDrawing':
|
|
return <OwnerDrawingsFormFields />;
|
|
|
|
case 'other_expense':
|
|
return <OtherExpnseFormFields />;
|
|
|
|
case 'transfer_to_account':
|
|
return <TransferToAccountFormFields />;
|
|
default:
|
|
break;
|
|
}
|
|
};
|
|
return <React.Fragment>{handleTransactionType()}</React.Fragment>;
|
|
}
|
|
|
|
export default MoneyOutContentFields;
|