> ## Documentation Index
> Fetch the complete documentation index at: https://docs-beta.layerfi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# General Ledger

> General Ledger View

The general ledger view offers a consistent UX for accessing the General Ledger.
It includes both the chart of accounts and the list of journal entries in a single experience.

![General Ledger View](https://github.com/user-attachments/assets/fe47e75b-770c-41d7-892f-3b4d39c1b1a8)

```tsx theme={null}
import { GeneralLedgerView } from '@layerfi/components'

<GeneralLedgerView title={"General Ledger"}/>
```

### Properties

<ParamField body="stringOverrides" type="object">
  <Expandable title="GeneralLedgerStringOverrides properties">
    <ParamField body="title" type="string">
      Override for the page title.
    </ParamField>

    <ParamField body="chartOfAccountsToggleOption" type="string">
      Text for the chart of accounts toggle option.
    </ParamField>

    <ParamField body="journalToggleOption" type="string">
      Text for the journal toggle option.
    </ParamField>

    <ParamField body="chartOfAccounts" type="ChartOfAccountsStringOverrides">
      String overrides specific to the chart of accounts component.
    </ParamField>

    <ParamField body="journal" type="JournalStringOverrides">
      String overrides specific to the journal component.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="chartOfAccountsOptions" type="object">
  <Expandable title="ChartOfAccountsOptions properties">
    <ParamField body="templateAccountsEditable" type="boolean">
      Controls whether template accounts can be edited. We recommend this only be true for advanced users.
    </ParamField>

    <ParamField body="showReversalEntries" type="boolean">
      Controls visibility of reversal entries.
    </ParamField>

    <ParamField body="showAddAccountButton" type="boolean">
      Controls visibility of the add account button.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="showTitle" type="boolean">
  Controls whether to display the title.
</ParamField>
