import React from 'react'; import OwnerContributionForm from './OwnerContribution/OwnerContributionForm'; import OtherIncomeForm from './OtherIncome/OtherIncomeForm'; import TransferFromAccountForm from './TransferFromAccount/TransferFromAccountForm'; export default function MoneyInDialogForm({ accountType }) { // Handle from transaction. const handleFromTransaction = () => { switch (accountType) { case 'OWNER_CONTRIBUTION': return ; case 'OTHER_INCOME': return ; case 'TRANSFER_FROM_ACCOUNT': return ; default: break; } }; return {handleFromTransaction()}; }