Manage transactions and accounts in one page. This view simply groups together the accounts management and the transaction categorization list so they can be managed together.

Bank Accounts and Transactions

import { BankTransactionsWithLinkedAccounts } from '@layerfi/components'

<BankTransactionsWithLinkedAccounts
  title={"Bank Transactions"}
  showLedgerBalance={false}
  mobileComponent={isMobileView ? 'mobileList' : 'regularList'}
  mode={'self-serve'}
/>

Properties

title
string

Page title to place in the header.

mode
string

Component mode for different client types. Values are: self-serve or bookkeeping-client. Defaults to self-serve.

mobileComponent
string

mobileList will use the mobile list view for transactions, while regularList will use the regular list view. See the Bank Transactions component for more information on this view.

showLedgerBalance
boolean

Flag indicating whether to show the ledger balance corresponding to each linked account in the linked account card. This can be useful for users who want to reconcile ledger balances with their bank statements.