// @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 ;
case 'other_expense':
return ;
case 'transfer_to_account':
return ;
default:
break;
}
};
return {handleTransactionType()};
}
export default MoneyOutContentFields;