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

# Chart of Accounts

> Manage a business's chart of accounts and GL account structure

## Overview

The Chart of Accounts provides a real-time, hierarchical drill-down balance sheet, allowing business owner-operators and bookkeepers to:

* View their GL Account structure
* Add/edit GL Accounts
* View a real-time balance sheet
* Set beginning balances

## Embedding the Chart of Accounts

To initialize the Tight Embedded experience in your React project, follow the instructions on [Embedding Tight's white-labeled UI](/embeddable-ui/react/patterns/embedding).

Below is an example embedding of the Chart of Accounts:

```TSX COA.tsx theme={null}
import { ChartOfAccounts, Tight } from "@tight-embedded/react";
import "@tight-embedded/react/index.css";

function COA({ accessToken }) {
    return (
      <Tight environment="SANDBOX" accessToken={accessToken} >
        <ChartOfAccounts />
      </Tight>
    )
}
```
