Skip to main content

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. Below is an example embedding of the Chart of Accounts:
COA.tsx
import { ChartOfAccounts, Tight } from "@tight-embedded/react";
import "@tight-embedded/react/index.css";

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