// @ts-nocheck import React from 'react'; import OwnerContributionFormFields from './OwnerContribution/OwnerContributionFormFields'; import OtherIncomeFormFields from './OtherIncome/OtherIncomeFormFields'; import TransferFromAccountFormFields from './TransferFromAccount/TransferFromAccountFormFields'; /** * * @param param0 * @returns */ export default function MoneyInContentFields({ accountType }) { const handleTransactionType = () => { switch (accountType) { case 'owner_contribution': return ; case 'other_income': return ; case 'transfer_from_account': return ; default: break; } }; return {handleTransactionType()}; }